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 /* 32 * Publicly available flags are defined in ld(1). The following flags are 33 * private, and may be removed at any time. 34 * 35 * OPTION MEANING 36 * 37 * -z dtrace=symbol assigns symbol to PT_SUNWDTRACE segment, 38 * providing scratch area for dtrace processing. 39 * 40 * -z noreloc suppress relocation processing. This provides 41 * a mechanism for validating kernel module symbol 42 * resolution that would normally incur fatal 43 * relocation errors. 44 * 45 * -z rtldinfo=symbol assigns symbol to SUNW_RTLDINF dynamic tag, 46 * providing pre-initialization specific routines 47 * for TLS initialization. 48 * 49 * -z nointerp suppress the addition of an interpreter 50 * section. This is used to generate the kernel, 51 * but makes no sense to be used by anyone else. 52 */ 53 #include <sys/link.h> 54 #include <stdio.h> 55 #include <fcntl.h> 56 #include <string.h> 57 #include <errno.h> 58 #include <elf.h> 59 #include <unistd.h> 60 #include <debug.h> 61 #include "msg.h" 62 #include "_libld.h" 63 64 /* 65 * Define a set of local argument flags, the settings of these will be 66 * verified in check_flags() and lead to the appropriate output file flags 67 * being initialized. 68 */ 69 typedef enum { 70 SET_UNKNOWN = -1, 71 SET_FALSE = 0, 72 SET_TRUE = 1 73 } Setstate; 74 75 static Setstate dflag = SET_UNKNOWN; 76 static Setstate zdflag = SET_UNKNOWN; 77 static Setstate Qflag = SET_UNKNOWN; 78 static Setstate Bdflag = SET_UNKNOWN; 79 80 static Boolean aflag = FALSE; 81 static Boolean bflag = FALSE; 82 static Boolean rflag = FALSE; 83 static Boolean sflag = FALSE; 84 static Boolean zinflag = FALSE; 85 static Boolean zlflag = FALSE; 86 static Boolean Bgflag = FALSE; 87 static Boolean Blflag = FALSE; 88 static Boolean Beflag = FALSE; 89 static Boolean Bsflag = FALSE; 90 static Boolean Btflag = FALSE; 91 static Boolean Gflag = FALSE; 92 static Boolean Vflag = FALSE; 93 94 /* 95 * ztflag's state is set by pointing it to the matching string: 96 * text | textoff | textwarn 97 */ 98 static const char *ztflag = 0; 99 100 static uintptr_t process_files_com(Ofl_desc *, int, char **); 101 static uintptr_t process_flags_com(Ofl_desc *, int, char **, int *); 102 103 /* 104 * Print usage message to stderr - 2 modes, summary message only, 105 * and full usage message. 106 */ 107 static void 108 usage_mesg(Boolean detail) 109 { 110 (void) fprintf(stderr, MSG_INTL(MSG_ARG_USAGE), 111 MSG_ORIG(MSG_STR_OPTIONS)); 112 113 if (detail == FALSE) 114 return; 115 116 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_6)); 117 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_A)); 118 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_B)); 119 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBDR)); 120 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBDY)); 121 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBE)); 122 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBG)); 123 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBL)); 124 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBR)); 125 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CBS)); 126 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_C)); 127 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CC)); 128 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_D)); 129 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CD)); 130 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_E)); 131 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_F)); 132 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CF)); 133 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CG)); 134 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_H)); 135 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_I)); 136 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CI)); 137 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_L)); 138 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CL)); 139 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_M)); 140 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CM)); 141 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CN)); 142 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_O)); 143 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_P)); 144 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CP)); 145 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CQ)); 146 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_R)); 147 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CR)); 148 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_S)); 149 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CS)); 150 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_T)); 151 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_U)); 152 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CV)); 153 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_CY)); 154 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZA)); 155 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZAE)); 156 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZAL)); 157 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZC)); 158 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZDFS)); 159 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZDRS)); 160 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZE)); 161 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZFA)); 162 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZGP)); 163 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZH)); 164 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZIG)); 165 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZINA)); 166 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZINI)); 167 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZINT)); 168 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZLAZY)); 169 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZLD32)); 170 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZLD64)); 171 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZLO)); 172 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZM)); 173 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNC)); 174 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNDFS)); 175 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNDEF)); 176 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNDEL)); 177 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNDLO)); 178 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNDU)); 179 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNLD)); 180 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNOW)); 181 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNPA)); 182 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZNV)); 183 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZO)); 184 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZPIA)); 185 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZRL)); 186 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZRREL)); 187 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZRS)); 188 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZT)); 189 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZTO)); 190 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZTW)); 191 (void) fprintf(stderr, MSG_INTL(MSG_ARG_DETAIL_ZV)); 192 } 193 194 /* 195 * Checks the command line option flags for consistency. 196 */ 197 static uintptr_t 198 check_flags(Ofl_desc * ofl, int argc) 199 { 200 if (Plibpath && (Llibdir || Ulibdir)) { 201 eprintf(ofl->ofl_lml, ERR_FATAL, MSG_INTL(MSG_ARG_YP), 202 Llibdir ? 'L' : 'U'); 203 ofl->ofl_flags |= FLG_OF_FATAL; 204 } 205 206 if (rflag) { 207 if (dflag == SET_UNKNOWN) 208 dflag = SET_FALSE; 209 if (ofl->ofl_flags1 & FLG_OF1_RELCNT) { 210 eprintf(ofl->ofl_lml, ERR_WARNING, 211 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_R), 212 MSG_ORIG(MSG_ARG_ZCOMBRELOC)); 213 ofl->ofl_flags1 &= ~FLG_OF1_RELCNT; 214 } 215 ofl->ofl_flags |= FLG_OF_RELOBJ; 216 } 217 218 if (zdflag == SET_TRUE) 219 ofl->ofl_flags |= FLG_OF_NOUNDEF; 220 221 if (zinflag) 222 ofl->ofl_dtflags_1 |= DF_1_INTERPOSE; 223 224 if (sflag) 225 ofl->ofl_flags |= FLG_OF_STRIP; 226 227 if (Qflag == SET_TRUE) 228 ofl->ofl_flags |= FLG_OF_ADDVERS; 229 230 if (Blflag) 231 ofl->ofl_flags |= FLG_OF_AUTOLCL; 232 233 if (Beflag) 234 ofl->ofl_flags1 |= FLG_OF1_AUTOELM; 235 236 if (Blflag && Beflag) { 237 eprintf(ofl->ofl_lml, ERR_FATAL, MSG_INTL(MSG_ARG_INCOMP), 238 MSG_ORIG(MSG_ARG_BELIMINATE), MSG_ORIG(MSG_ARG_BLOCAL)); 239 ofl->ofl_flags |= FLG_OF_FATAL; 240 } 241 242 if (ofl->ofl_interp && (ofl->ofl_flags1 & FLG_OF1_NOINTRP)) { 243 eprintf(ofl->ofl_lml, ERR_FATAL, MSG_INTL(MSG_ARG_INCOMP), 244 MSG_ORIG(MSG_ARG_CI), MSG_ORIG(MSG_ARG_ZNOINTERP)); 245 ofl->ofl_flags |= FLG_OF_FATAL; 246 } 247 248 if (dflag != SET_FALSE) { 249 /* 250 * Set -Bdynamic on by default, setting is rechecked as input 251 * files are processed. 252 */ 253 ofl->ofl_flags |= 254 (FLG_OF_DYNAMIC | FLG_OF_DYNLIBS | FLG_OF_PROCRED); 255 256 if (aflag) { 257 eprintf(ofl->ofl_lml, ERR_FATAL, 258 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DY), 259 MSG_ORIG(MSG_ARG_A)); 260 ofl->ofl_flags |= FLG_OF_FATAL; 261 } 262 263 if (bflag) 264 ofl->ofl_flags |= FLG_OF_BFLAG; 265 266 if (Bgflag == TRUE) { 267 if (zdflag == SET_FALSE) { 268 eprintf(ofl->ofl_lml, ERR_FATAL, 269 MSG_INTL(MSG_ARG_INCOMP), 270 MSG_ORIG(MSG_ARG_BGROUP), 271 MSG_ORIG(MSG_ARG_ZNODEF)); 272 ofl->ofl_flags |= FLG_OF_FATAL; 273 } 274 ofl->ofl_dtflags_1 |= DF_1_GROUP; 275 ofl->ofl_flags |= FLG_OF_NOUNDEF; 276 } 277 278 /* 279 * If the use of default library searching has been suppressed 280 * but no runpaths have been provided we're going to have a hard 281 * job running this object. 282 */ 283 if ((ofl->ofl_dtflags_1 & DF_1_NODEFLIB) && !ofl->ofl_rpath) 284 eprintf(ofl->ofl_lml, ERR_WARNING, 285 MSG_INTL(MSG_ARG_NODEFLIB)); 286 287 /* 288 * By default, text relocation warnings are given when building 289 * an executable unless the -b flag is specified. This option 290 * implies that unclean text can be created, so no warnings are 291 * generated unless specifically asked for. 292 */ 293 if ((ztflag == MSG_ORIG(MSG_ARG_ZTEXTOFF)) || 294 ((ztflag == 0) && bflag)) 295 ofl->ofl_flags1 |= FLG_OF1_TEXTOFF; 296 else if (ztflag == MSG_ORIG(MSG_ARG_ZTEXT)) 297 ofl->ofl_flags |= FLG_OF_PURETXT; 298 299 if (Gflag || !rflag) { 300 /* 301 * Create a dynamic object. -Bdirect indicates that all 302 * references should be bound directly. This also 303 * enables lazyloading. Individual symbols can be 304 * bound directly (or not) using mapfiles and the 305 * DIRECT (NODIRECT) qualifier. With this capability, 306 * each syminfo entry is tagged SYMINFO_FLG_DIRECTBIND. 307 * Prior to this per-symbol direct binding, runtime 308 * direct binding was controlled via the DF_1_DIRECT 309 * flag. This flag affected all references from the 310 * object. -Bdirect continues to set this flag, and 311 * thus provides a means of taking a newly built 312 * direct binding object back to older systems. 313 * 314 * NOTE, any use of per-symbol NODIRECT bindings, or 315 * -znodirect, will disable the creation of the 316 * DF_1_DIRECT flag. Older runtime linkers do not 317 * have the capability to do per-symbol direct bindings. 318 */ 319 if (Bdflag == SET_TRUE) { 320 ofl->ofl_dtflags_1 |= DF_1_DIRECT; 321 ofl->ofl_flags1 |= FLG_OF1_LAZYLD; 322 ofl->ofl_flags |= FLG_OF_SYMINFO; 323 } 324 325 /* 326 * -Bnodirect disables directly binding to any symbols 327 * exported from the object being created. Individual 328 * references to external objects can still be affected 329 * by -zdirect or mapfile DIRECT directives. 330 */ 331 if (Bdflag == SET_FALSE) { 332 ofl->ofl_dtflags_1 |= DF_1_NODIRECT; 333 ofl->ofl_flags1 |= 334 (FLG_OF1_NDIRECT | FLG_OF1_ALNODIR); 335 ofl->ofl_flags |= FLG_OF_SYMINFO; 336 } 337 } 338 339 if (!Gflag && !rflag) { 340 /* 341 * Dynamically linked executable. 342 */ 343 ofl->ofl_flags |= FLG_OF_EXEC; 344 345 if (zdflag != SET_FALSE) 346 ofl->ofl_flags |= FLG_OF_NOUNDEF; 347 348 if (Bsflag) { 349 eprintf(ofl->ofl_lml, ERR_FATAL, 350 MSG_INTL(MSG_ARG_DYNINCOMP), 351 MSG_ORIG(MSG_ARG_BSYMBOLIC)); 352 ofl->ofl_flags |= FLG_OF_FATAL; 353 } 354 if (ofl->ofl_soname) { 355 eprintf(ofl->ofl_lml, ERR_FATAL, 356 MSG_INTL(MSG_ARG_DYNINCOMP), 357 MSG_ORIG(MSG_ARG_H)); 358 ofl->ofl_flags |= FLG_OF_FATAL; 359 } 360 if (Btflag) { 361 eprintf(ofl->ofl_lml, ERR_FATAL, 362 MSG_INTL(MSG_ARG_DYNINCOMP), 363 MSG_ORIG(MSG_ARG_BTRANS)); 364 ofl->ofl_flags |= FLG_OF_FATAL; 365 } 366 if (ofl->ofl_filtees) { 367 if (ofl->ofl_flags & FLG_OF_AUX) { 368 eprintf(ofl->ofl_lml, ERR_FATAL, 369 MSG_INTL(MSG_ARG_DYNINCOMP), 370 MSG_ORIG(MSG_ARG_F)); 371 } else { 372 eprintf(ofl->ofl_lml, ERR_FATAL, 373 MSG_INTL(MSG_ARG_DYNINCOMP), 374 MSG_ORIG(MSG_ARG_CF)); 375 } 376 ofl->ofl_flags |= FLG_OF_FATAL; 377 } 378 379 } else if (!rflag) { 380 /* 381 * Shared library. 382 */ 383 ofl->ofl_flags |= FLG_OF_SHAROBJ; 384 385 /* 386 * By default, print text relocation errors for 387 * executables but *not* for shared objects. 388 */ 389 if (ztflag == 0) 390 ofl->ofl_flags1 |= FLG_OF1_TEXTOFF; 391 392 if (Bsflag) { 393 /* 394 * -Bsymbolic, and -Bnodirect make no sense. 395 */ 396 if (Bdflag == SET_FALSE) { 397 eprintf(ofl->ofl_lml, ERR_FATAL, 398 MSG_INTL(MSG_ARG_INCOMP), 399 MSG_ORIG(MSG_ARG_BSYMBOLIC), 400 MSG_ORIG(MSG_ARG_BNODIRECT)); 401 ofl->ofl_flags |= FLG_OF_FATAL; 402 } 403 ofl->ofl_flags |= FLG_OF_SYMBOLIC; 404 ofl->ofl_dtflags |= DF_SYMBOLIC; 405 } 406 407 if (Btflag) { 408 ofl->ofl_dtflags_1 |= 409 (DF_1_TRANS | DF_1_DIRECT); 410 ofl->ofl_flags |= FLG_OF_SYMINFO; 411 } 412 413 } else { 414 /* 415 * Dynamic relocatable object 416 */ 417 /* 418 * By default we print relocation errors for 419 * executables but *not* for a shared object 420 */ 421 if (ztflag == 0) 422 ofl->ofl_flags1 |= FLG_OF1_TEXTOFF; 423 } 424 } else { 425 ofl->ofl_flags |= FLG_OF_STATIC; 426 427 if (bflag) { 428 eprintf(ofl->ofl_lml, ERR_FATAL, 429 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 430 MSG_ORIG(MSG_ARG_B)); 431 ofl->ofl_flags |= FLG_OF_FATAL; 432 } 433 if (ofl->ofl_soname) { 434 eprintf(ofl->ofl_lml, ERR_FATAL, 435 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 436 MSG_ORIG(MSG_ARG_H)); 437 ofl->ofl_flags |= FLG_OF_FATAL; 438 } 439 if (ofl->ofl_depaudit) { 440 eprintf(ofl->ofl_lml, ERR_FATAL, 441 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 442 MSG_ORIG(MSG_ARG_P)); 443 ofl->ofl_flags |= FLG_OF_FATAL; 444 } 445 if (ofl->ofl_audit) { 446 eprintf(ofl->ofl_lml, ERR_FATAL, 447 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 448 MSG_ORIG(MSG_ARG_CP)); 449 ofl->ofl_flags |= FLG_OF_FATAL; 450 } 451 if (ofl->ofl_config) { 452 eprintf(ofl->ofl_lml, ERR_FATAL, 453 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 454 MSG_ORIG(MSG_ARG_C)); 455 ofl->ofl_flags |= FLG_OF_FATAL; 456 } 457 if (ofl->ofl_filtees) { 458 if (ofl->ofl_flags & FLG_OF_AUX) { 459 eprintf(ofl->ofl_lml, ERR_FATAL, 460 MSG_INTL(MSG_ARG_INCOMP), 461 MSG_ORIG(MSG_ARG_DN), MSG_ORIG(MSG_ARG_F)); 462 } else { 463 eprintf(ofl->ofl_lml, ERR_FATAL, 464 MSG_INTL(MSG_ARG_INCOMP), 465 MSG_ORIG(MSG_ARG_DN), MSG_ORIG(MSG_ARG_CF)); 466 } 467 ofl->ofl_flags |= FLG_OF_FATAL; 468 } 469 if (ztflag) { 470 eprintf(ofl->ofl_lml, ERR_FATAL, 471 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 472 MSG_ORIG(MSG_ARG_ZTEXTALL)); 473 ofl->ofl_flags |= FLG_OF_FATAL; 474 } 475 if (Gflag) { 476 eprintf(ofl->ofl_lml, ERR_FATAL, 477 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_DN), 478 MSG_ORIG(MSG_ARG_CG)); 479 ofl->ofl_flags |= FLG_OF_FATAL; 480 } 481 if (aflag && rflag) { 482 eprintf(ofl->ofl_lml, ERR_FATAL, 483 MSG_INTL(MSG_ARG_INCOMP), MSG_ORIG(MSG_ARG_A), 484 MSG_ORIG(MSG_ARG_R)); 485 ofl->ofl_flags |= FLG_OF_FATAL; 486 } 487 488 if (rflag) { 489 /* 490 * We can only strip the symbol table and string table 491 * if no output relocations will refer to them 492 */ 493 if (sflag) { 494 eprintf(ofl->ofl_lml, ERR_WARNING, 495 MSG_INTL(MSG_ARG_STRIP)); 496 } 497 498 if (ztflag == 0) 499 ofl->ofl_flags1 |= FLG_OF1_TEXTOFF; 500 501 if (ofl->ofl_interp) { 502 eprintf(ofl->ofl_lml, ERR_FATAL, 503 MSG_INTL(MSG_ARG_INCOMP), 504 MSG_ORIG(MSG_ARG_R), MSG_ORIG(MSG_ARG_CI)); 505 ofl->ofl_flags |= FLG_OF_FATAL; 506 } 507 } else { 508 /* 509 * Static executable. 510 */ 511 ofl->ofl_flags |= FLG_OF_EXEC | FLG_OF_PROCRED; 512 513 if (zdflag != SET_FALSE) 514 ofl->ofl_flags |= FLG_OF_NOUNDEF; 515 } 516 } 517 518 /* 519 * If the user didn't supply an output file name supply a default. 520 */ 521 if (ofl->ofl_name == NULL) 522 ofl->ofl_name = MSG_ORIG(MSG_STR_AOUT); 523 524 /* 525 * We set the entrance criteria after all input argument processing as 526 * it is only at this point we're sure what the output image will be 527 * (static or dynamic). 528 */ 529 if (ld_ent_setup(ofl, M_SEGM_ALIGN) == S_ERROR) 530 return (S_ERROR); 531 532 /* 533 * Initialize string tables. Symbol definitions within mapfiles can 534 * result in the creation of input sections. 535 */ 536 if (ld_init_strings(ofl) == S_ERROR) 537 return (S_ERROR); 538 539 /* 540 * Process any mapfiles after establishing the entrance criteria as 541 * the user may be redefining or adding sections/segments. 542 */ 543 if (ofl->ofl_maps.head) { 544 Listnode *lnp; 545 const char *name; 546 547 for (LIST_TRAVERSE(&ofl->ofl_maps, lnp, name)) 548 if (ld_map_parse(name, ofl) == S_ERROR) 549 return (S_ERROR); 550 551 if (ofl->ofl_flags & FLG_OF_SEGSORT) 552 if (ld_sort_seg_list(ofl) == S_ERROR) 553 return (S_ERROR); 554 } 555 556 /* 557 * If a mapfile has been used to define a single symbolic scope of 558 * interfaces, -Bsymbolic is established. This global setting goes 559 * beyond individual symbol protection, and ensures all relocations 560 * (even those that reference section symbols) are processed within 561 * the object being built. 562 */ 563 if ((ofl->ofl_flags & 564 (FLG_OF_MAPSYMB | FLG_OF_MAPGLOB)) == FLG_OF_MAPSYMB) { 565 ofl->ofl_flags |= FLG_OF_SYMBOLIC; 566 ofl->ofl_dtflags |= DF_SYMBOLIC; 567 } 568 569 /* 570 * If -zloadfltr is set, verify that filtering is in effect. Filters 571 * are either established from the command line, and affect the whole 572 * object, or are set on a per-symbol basis from a mapfile. 573 */ 574 if (zlflag) { 575 if ((ofl->ofl_filtees == 0) && (ofl->ofl_dtsfltrs == 0)) { 576 eprintf(ofl->ofl_lml, ERR_FATAL, 577 MSG_INTL(MSG_ARG_NOFLTR), 578 MSG_ORIG(MSG_ARG_ZLOADFLTR)); 579 ofl->ofl_flags |= FLG_OF_FATAL; 580 } 581 ofl->ofl_dtflags_1 |= DF_1_LOADFLTR; 582 } 583 584 /* 585 * Check that we have something to work with. This check is carried out 586 * after mapfile processing as its possible a mapfile is being used to 587 * define symbols, in which case it would be sufficient to build the 588 * output file purely from the mapfile. 589 */ 590 if ((ofl->ofl_objscnt == 0) && (ofl->ofl_soscnt == 0)) { 591 if (Vflag && (argc == 2)) 592 ofl->ofl_flags1 |= FLG_OF1_DONE; 593 else { 594 eprintf(ofl->ofl_lml, ERR_FATAL, 595 MSG_INTL(MSG_ARG_NOFILES)); 596 return (S_ERROR); 597 } 598 } 599 return (1); 600 } 601 602 /* 603 * Decompose the string pointed by optarg into argv[][] so that argv[][] can be 604 * used as an argument to getopt(). 605 * 606 * If the second argument 'error' is not 0, then this is called from the first 607 * pass. Else this is called from the second pass. 608 */ 609 static uintptr_t 610 createargv(Ofl_desc *ofl, int *error) 611 { 612 int argc = 0, idx = 0, ooptind; 613 uintptr_t ret; 614 char **argv, *p0; 615 616 /* 617 * The argument being examined is either: 618 * ld32= or 619 * ld64= 620 */ 621 #if defined(_LP64) 622 if (optarg[2] == '3') 623 return (0); 624 #else 625 if (optarg[2] == '6') 626 return (0); 627 #endif 628 629 p0 = &optarg[5]; 630 631 /* 632 * Count the number of arguments. 633 */ 634 while (*p0) { 635 /* 636 * Pointing at non-separator character. 637 */ 638 if (*p0 != ',') { 639 argc++; 640 while (*p0 && (*p0 != ',')) 641 p0++; 642 continue; 643 } 644 645 /* 646 * Pointing at a separator character. 647 */ 648 if (*p0 == ',') { 649 while (*p0 == ',') 650 p0++; 651 continue; 652 } 653 } 654 655 if (argc == 0) 656 return (0); 657 658 /* 659 * Allocate argument vector. 660 */ 661 if ((p0 = (char *)strdup(&optarg[5])) == 0) 662 return (S_ERROR); 663 if ((argv = libld_malloc((sizeof (char *)) * (argc + 1))) == 0) 664 return (S_ERROR); 665 666 while (*p0) { 667 char *p; 668 669 /* 670 * Pointing at the beginning of non-separator character string. 671 */ 672 if (*p0 != ',') { 673 p = p0; 674 while (*p0 && (*p0 != ',')) 675 p0++; 676 argv[idx++] = p; 677 if (*p0) { 678 *p0 = '\0'; 679 p0++; 680 } 681 continue; 682 } 683 684 /* 685 * Pointing at the beginining of separator character string. 686 */ 687 if (*p0 == ',') { 688 while (*p0 == ',') 689 p0++; 690 continue; 691 } 692 } 693 argv[idx] = 0; 694 ooptind = optind; 695 optind = 0; 696 697 /* 698 * Dispatch to pass1 or pass2 699 */ 700 if (error) 701 ret = process_flags_com(ofl, argc, argv, error); 702 else 703 ret = process_files_com(ofl, argc, argv); 704 705 optind = ooptind; 706 707 if (ret == S_ERROR) 708 return (S_ERROR); 709 710 return (argc); 711 } 712 713 /* 714 * Parsing options pass1 for process_flags(). 715 */ 716 static uintptr_t 717 parseopt_pass1(Ofl_desc *ofl, int argc, char **argv, int *error) 718 { 719 int c; 720 721 while ((c = getopt(argc, argv, MSG_ORIG(MSG_STR_OPTIONS))) != -1) { 722 DBG_CALL(Dbg_args_flags(ofl->ofl_lml, (optind - 1), c)); 723 724 switch (c) { 725 case '6': /* Processed by ld to */ 726 /* 727 * -64 is processed by ld to determine the output class. 728 * Here we sanity check the option incase some other 729 * -6* option is mistakenly passed to us. 730 */ 731 if (optarg[0] != '4') { 732 eprintf(ofl->ofl_lml, ERR_FATAL, 733 MSG_INTL(MSG_ARG_ILLEGAL), 734 MSG_ORIG(MSG_ARG_6), optarg); 735 ofl->ofl_flags |= FLG_OF_FATAL; 736 } 737 continue; 738 739 case 'a': 740 aflag = TRUE; 741 break; 742 743 case 'b': 744 bflag = TRUE; 745 746 /* 747 * This is a hack, and may be undone later. 748 * The -b option is only used to build the Unix 749 * kernel and its related kernel-mode modules. 750 * We do not want those files to get a .SUNW_ldynsym 751 * section. At least for now, the kernel makes no 752 * use of .SUNW_ldynsym, and we do not want to use 753 * the space to hold it. Therefore, we overload 754 * the use of -b to also imply -znoldynsym. 755 */ 756 ofl->ofl_flags |= FLG_OF_NOLDYNSYM; 757 break; 758 759 case 'c': 760 if (ofl->ofl_config) 761 eprintf(ofl->ofl_lml, ERR_WARNING, 762 MSG_INTL(MSG_ARG_MTONCE), 763 MSG_ORIG(MSG_ARG_C)); 764 else 765 ofl->ofl_config = optarg; 766 break; 767 768 case 'C': 769 demangle_flag = 1; 770 break; 771 772 case 'd': 773 if ((optarg[0] == 'n') && (optarg[1] == '\0')) { 774 if (dflag != SET_UNKNOWN) 775 eprintf(ofl->ofl_lml, ERR_WARNING, 776 MSG_INTL(MSG_ARG_MTONCE), 777 MSG_ORIG(MSG_ARG_D)); 778 else 779 dflag = SET_FALSE; 780 } else if ((optarg[0] == 'y') && (optarg[1] == '\0')) { 781 if (dflag != SET_UNKNOWN) 782 eprintf(ofl->ofl_lml, ERR_WARNING, 783 MSG_INTL(MSG_ARG_MTONCE), 784 MSG_ORIG(MSG_ARG_D)); 785 else 786 dflag = SET_TRUE; 787 } else { 788 eprintf(ofl->ofl_lml, ERR_FATAL, 789 MSG_INTL(MSG_ARG_ILLEGAL), 790 MSG_ORIG(MSG_ARG_D), optarg); 791 ofl->ofl_flags |= FLG_OF_FATAL; 792 } 793 break; 794 795 case 'e': 796 if (ofl->ofl_entry) 797 eprintf(ofl->ofl_lml, ERR_WARNING, 798 MSG_INTL(MSG_ARG_MTONCE), 799 MSG_ORIG(MSG_ARG_E)); 800 else 801 ofl->ofl_entry = (void *)optarg; 802 break; 803 804 case 'f': 805 if (ofl->ofl_filtees && 806 (!(ofl->ofl_flags & FLG_OF_AUX))) { 807 eprintf(ofl->ofl_lml, ERR_FATAL, 808 MSG_INTL(MSG_ARG_INCOMP), 809 MSG_ORIG(MSG_ARG_F), MSG_ORIG(MSG_ARG_CF)); 810 ofl->ofl_flags |= FLG_OF_FATAL; 811 } else { 812 if ((ofl->ofl_filtees = 813 add_string(ofl->ofl_filtees, optarg)) == 814 (const char *)S_ERROR) 815 return (S_ERROR); 816 ofl->ofl_flags |= FLG_OF_AUX; 817 } 818 break; 819 820 case 'F': 821 if (ofl->ofl_filtees && 822 (ofl->ofl_flags & FLG_OF_AUX)) { 823 eprintf(ofl->ofl_lml, ERR_FATAL, 824 MSG_INTL(MSG_ARG_INCOMP), 825 MSG_ORIG(MSG_ARG_CF), MSG_ORIG(MSG_ARG_F)); 826 ofl->ofl_flags |= FLG_OF_FATAL; 827 } else { 828 if ((ofl->ofl_filtees = 829 add_string(ofl->ofl_filtees, optarg)) == 830 (const char *)S_ERROR) 831 return (S_ERROR); 832 } 833 break; 834 835 case 'h': 836 if (ofl->ofl_soname) 837 eprintf(ofl->ofl_lml, ERR_WARNING, 838 MSG_INTL(MSG_ARG_MTONCE), 839 MSG_ORIG(MSG_ARG_H)); 840 else 841 ofl->ofl_soname = (const char *)optarg; 842 break; 843 844 case 'i': 845 ofl->ofl_flags |= FLG_OF_IGNENV; 846 break; 847 848 case 'I': 849 if (ofl->ofl_interp) 850 eprintf(ofl->ofl_lml, ERR_WARNING, 851 MSG_INTL(MSG_ARG_MTONCE), 852 MSG_ORIG(MSG_ARG_CI)); 853 else 854 ofl->ofl_interp = (const char *)optarg; 855 break; 856 857 case 'l': 858 /* 859 * For now, count any library as a shared object. This 860 * is used to size the internal symbol cache. This 861 * value is recalculated later on actual file processing 862 * to get an accurate shared object count. 863 */ 864 ofl->ofl_soscnt++; 865 break; 866 867 case 'm': 868 ofl->ofl_flags |= FLG_OF_GENMAP; 869 break; 870 871 case 'o': 872 if (ofl->ofl_name) 873 eprintf(ofl->ofl_lml, ERR_WARNING, 874 MSG_INTL(MSG_ARG_MTONCE), 875 MSG_ORIG(MSG_ARG_O)); 876 else 877 ofl->ofl_name = (const char *)optarg; 878 break; 879 880 case 'p': 881 /* 882 * Multiple instances of this option may occur. Each 883 * additional instance is effectively concatenated to 884 * the previous separated by a colon. 885 */ 886 if (*optarg != '\0') { 887 if ((ofl->ofl_audit = 888 add_string(ofl->ofl_audit, 889 optarg)) == (const char *)S_ERROR) 890 return (S_ERROR); 891 } 892 break; 893 894 case 'P': 895 /* 896 * Multiple instances of this option may occur. Each 897 * additional instance is effectively concatenated to 898 * the previous separated by a colon. 899 */ 900 if (*optarg != '\0') { 901 if ((ofl->ofl_depaudit = 902 add_string(ofl->ofl_depaudit, 903 optarg)) == (const char *)S_ERROR) 904 return (S_ERROR); 905 } 906 break; 907 908 case 'r': 909 rflag = TRUE; 910 break; 911 912 case 'R': 913 /* 914 * Multiple instances of this option may occur. Each 915 * additional instance is effectively concatenated to 916 * the previous separated by a colon. 917 */ 918 if (*optarg != '\0') { 919 if ((ofl->ofl_rpath = 920 add_string(ofl->ofl_rpath, 921 optarg)) == (const char *)S_ERROR) 922 return (S_ERROR); 923 } 924 break; 925 926 case 's': 927 sflag = TRUE; 928 break; 929 930 case 't': 931 ofl->ofl_flags |= FLG_OF_NOWARN; 932 break; 933 934 case 'u': 935 break; 936 937 case 'z': 938 /* 939 * For specific help, print our usage message and exit 940 * immediately to ensure a 0 return code. 941 */ 942 if (strncmp(optarg, MSG_ORIG(MSG_ARG_HELP), 943 MSG_ARG_HELP_SIZE) == 0) { 944 usage_mesg(1); 945 exit(0); 946 } 947 948 /* 949 * For some options set a flag - further consistancy 950 * checks will be carried out in check_flags(). 951 */ 952 if ((strncmp(optarg, MSG_ORIG(MSG_ARG_LD32), 953 MSG_ARG_LD32_SIZE) == 0) || 954 (strncmp(optarg, MSG_ORIG(MSG_ARG_LD64), 955 MSG_ARG_LD64_SIZE) == 0)) { 956 if (createargv(ofl, error) == S_ERROR) 957 return (S_ERROR); 958 959 } else if ( 960 strcmp(optarg, MSG_ORIG(MSG_ARG_DEFS)) == 0) { 961 if (zdflag != SET_UNKNOWN) 962 eprintf(ofl->ofl_lml, ERR_WARNING, 963 MSG_INTL(MSG_ARG_MTONCE), 964 MSG_ORIG(MSG_ARG_ZDEFNODEF)); 965 else 966 zdflag = SET_TRUE; 967 } else if (strcmp(optarg, 968 MSG_ORIG(MSG_ARG_NODEFS)) == 0) { 969 if (zdflag != SET_UNKNOWN) 970 eprintf(ofl->ofl_lml, ERR_WARNING, 971 MSG_INTL(MSG_ARG_MTONCE), 972 MSG_ORIG(MSG_ARG_ZDEFNODEF)); 973 else 974 zdflag = SET_FALSE; 975 } else if (strcmp(optarg, 976 MSG_ORIG(MSG_ARG_TEXT)) == 0) { 977 if (ztflag && 978 (ztflag != MSG_ORIG(MSG_ARG_ZTEXT))) { 979 eprintf(ofl->ofl_lml, ERR_FATAL, 980 MSG_INTL(MSG_ARG_INCOMP), 981 MSG_ORIG(MSG_ARG_ZTEXT), 982 ztflag); 983 ofl->ofl_flags |= FLG_OF_FATAL; 984 } 985 ztflag = MSG_ORIG(MSG_ARG_ZTEXT); 986 } else if (strcmp(optarg, 987 MSG_ORIG(MSG_ARG_TEXTOFF)) == 0) { 988 if (ztflag && 989 (ztflag != MSG_ORIG(MSG_ARG_ZTEXTOFF))) { 990 eprintf(ofl->ofl_lml, ERR_FATAL, 991 MSG_INTL(MSG_ARG_INCOMP), 992 MSG_ORIG(MSG_ARG_ZTEXTOFF), 993 ztflag); 994 ofl->ofl_flags |= FLG_OF_FATAL; 995 } 996 ztflag = MSG_ORIG(MSG_ARG_ZTEXTOFF); 997 } else if (strcmp(optarg, 998 MSG_ORIG(MSG_ARG_TEXTWARN)) == 0) { 999 if (ztflag && 1000 (ztflag != MSG_ORIG(MSG_ARG_ZTEXTWARN))) { 1001 eprintf(ofl->ofl_lml, ERR_FATAL, 1002 MSG_INTL(MSG_ARG_INCOMP), 1003 MSG_ORIG(MSG_ARG_ZTEXTWARN), 1004 ztflag); 1005 ofl->ofl_flags |= FLG_OF_FATAL; 1006 } 1007 ztflag = MSG_ORIG(MSG_ARG_ZTEXTWARN); 1008 1009 /* 1010 * For other options simply set the ofl flags directly. 1011 */ 1012 } else if (strcmp(optarg, 1013 MSG_ORIG(MSG_ARG_RESCAN)) == 0) { 1014 ofl->ofl_flags1 |= FLG_OF1_RESCAN; 1015 } else if (strcmp(optarg, 1016 MSG_ORIG(MSG_ARG_ABSEXEC)) == 0) { 1017 ofl->ofl_flags1 |= FLG_OF1_ABSEXEC; 1018 } else if (strcmp(optarg, 1019 MSG_ORIG(MSG_ARG_LOADFLTR)) == 0) { 1020 zlflag = TRUE; 1021 } else if (strcmp(optarg, 1022 MSG_ORIG(MSG_ARG_NORELOC)) == 0) { 1023 ofl->ofl_dtflags_1 |= DF_1_NORELOC; 1024 } else if (strcmp(optarg, 1025 MSG_ORIG(MSG_ARG_NOVERSION)) == 0) { 1026 ofl->ofl_flags |= FLG_OF_NOVERSEC; 1027 } else if (strcmp(optarg, 1028 MSG_ORIG(MSG_ARG_MULDEFS)) == 0) { 1029 ofl->ofl_flags |= FLG_OF_MULDEFS; 1030 } else if (strcmp(optarg, 1031 MSG_ORIG(MSG_ARG_REDLOCSYM)) == 0) { 1032 ofl->ofl_flags1 |= FLG_OF1_REDLSYM; 1033 } else if (strcmp(optarg, 1034 MSG_ORIG(MSG_ARG_INITFIRST)) == 0) { 1035 ofl->ofl_dtflags_1 |= DF_1_INITFIRST; 1036 } else if (strcmp(optarg, 1037 MSG_ORIG(MSG_ARG_NODELETE)) == 0) { 1038 ofl->ofl_dtflags_1 |= DF_1_NODELETE; 1039 } else if (strcmp(optarg, 1040 MSG_ORIG(MSG_ARG_NOPARTIAL)) == 0) { 1041 ofl->ofl_flags1 |= FLG_OF1_NOPARTI; 1042 } else if (strcmp(optarg, 1043 MSG_ORIG(MSG_ARG_NOOPEN)) == 0) { 1044 ofl->ofl_dtflags_1 |= DF_1_NOOPEN; 1045 } else if (strcmp(optarg, 1046 MSG_ORIG(MSG_ARG_NOW)) == 0) { 1047 ofl->ofl_dtflags_1 |= DF_1_NOW; 1048 ofl->ofl_dtflags |= DF_BIND_NOW; 1049 } else if (strcmp(optarg, 1050 MSG_ORIG(MSG_ARG_ORIGIN)) == 0) { 1051 ofl->ofl_dtflags_1 |= DF_1_ORIGIN; 1052 ofl->ofl_dtflags |= DF_ORIGIN; 1053 } else if (strcmp(optarg, 1054 MSG_ORIG(MSG_ARG_NODEFAULTLIB)) == 0) { 1055 ofl->ofl_dtflags_1 |= DF_1_NODEFLIB; 1056 } else if (strcmp(optarg, 1057 MSG_ORIG(MSG_ARG_NODUMP)) == 0) { 1058 ofl->ofl_dtflags_1 |= DF_1_NODUMP; 1059 } else if (strcmp(optarg, 1060 MSG_ORIG(MSG_ARG_ENDFILTEE)) == 0) { 1061 ofl->ofl_dtflags_1 |= DF_1_ENDFILTEE; 1062 } else if (strcmp(optarg, 1063 MSG_ORIG(MSG_ARG_VERBOSE)) == 0) { 1064 ofl->ofl_flags |= FLG_OF_VERBOSE; 1065 } else if (strcmp(optarg, 1066 MSG_ORIG(MSG_ARG_COMBRELOC)) == 0) { 1067 ofl->ofl_flags1 |= FLG_OF1_RELCNT; 1068 } else if (strcmp(optarg, 1069 MSG_ORIG(MSG_ARG_NOCOMPSTRTAB)) == 0) { 1070 ofl->ofl_flags1 |= FLG_OF1_NCSTTAB; 1071 } else if (strcmp(optarg, 1072 MSG_ORIG(MSG_ARG_NOINTERP)) == 0) { 1073 ofl->ofl_flags1 |= FLG_OF1_NOINTRP; 1074 } else if (strcmp(optarg, 1075 MSG_ORIG(MSG_ARG_INTERPOSE)) == 0) { 1076 zinflag = TRUE; 1077 } else if (strcmp(optarg, 1078 MSG_ORIG(MSG_ARG_IGNORE)) == 0) { 1079 ofl->ofl_flags1 |= FLG_OF1_IGNPRC; 1080 } else if (strcmp(optarg, 1081 MSG_ORIG(MSG_ARG_RELAXRELOC)) == 0) { 1082 ofl->ofl_flags1 |= FLG_OF1_RLXREL; 1083 } else if (strcmp(optarg, 1084 MSG_ORIG(MSG_ARG_NOLDYNSYM)) == 0) { 1085 ofl->ofl_flags |= FLG_OF_NOLDYNSYM; 1086 /* 1087 * The following options just need validation as they 1088 * are interpreted on the second pass through the 1089 * command line arguments. 1090 */ 1091 } else if ( 1092 strncmp(optarg, MSG_ORIG(MSG_ARG_INITARRAY), 1093 MSG_ARG_INITARRAY_SIZE) && 1094 strncmp(optarg, MSG_ORIG(MSG_ARG_FINIARRAY), 1095 MSG_ARG_FINIARRAY_SIZE) && 1096 strncmp(optarg, MSG_ORIG(MSG_ARG_PREINITARRAY), 1097 MSG_ARG_PREINITARRAY_SIZE) && 1098 strncmp(optarg, MSG_ORIG(MSG_ARG_RTLDINFO), 1099 MSG_ARG_RTLDINFO_SIZE) && 1100 strncmp(optarg, MSG_ORIG(MSG_ARG_DTRACE), 1101 MSG_ARG_DTRACE_SIZE) && 1102 strcmp(optarg, MSG_ORIG(MSG_ARG_ALLEXTRT)) && 1103 strcmp(optarg, MSG_ORIG(MSG_ARG_DFLEXTRT)) && 1104 strcmp(optarg, MSG_ORIG(MSG_ARG_DIRECT)) && 1105 strcmp(optarg, MSG_ORIG(MSG_ARG_NODIRECT)) && 1106 strcmp(optarg, MSG_ORIG(MSG_ARG_GROUPPERM)) && 1107 strcmp(optarg, MSG_ORIG(MSG_ARG_LAZYLOAD)) && 1108 strcmp(optarg, MSG_ORIG(MSG_ARG_NOGROUPPERM)) && 1109 strcmp(optarg, MSG_ORIG(MSG_ARG_NOLAZYLOAD)) && 1110 strcmp(optarg, MSG_ORIG(MSG_ARG_RECORD)) && 1111 strcmp(optarg, MSG_ORIG(MSG_ARG_ALTEXEC64)) && 1112 strcmp(optarg, MSG_ORIG(MSG_ARG_WEAKEXT))) { 1113 eprintf(ofl->ofl_lml, ERR_FATAL, 1114 MSG_INTL(MSG_ARG_ILLEGAL), 1115 MSG_ORIG(MSG_ARG_Z), optarg); 1116 ofl->ofl_flags |= FLG_OF_FATAL; 1117 1118 } 1119 1120 break; 1121 1122 case 'D': 1123 /* 1124 * If we have not yet read any input files go ahead 1125 * and process any debugging options (this allows any 1126 * argument processing, entrance criteria and library 1127 * initialization to be displayed). Otherwise, if an 1128 * input file has been seen, skip interpretation until 1129 * process_files (this allows debugging to be turned 1130 * on and off around individual groups of files). 1131 */ 1132 if (ofl->ofl_objscnt == 0) { 1133 if (dbg_setup(optarg, dbg_desc, 1134 &ofl->ofl_name, 1) == S_ERROR) 1135 return (S_ERROR); 1136 } 1137 break; 1138 1139 case 'B': 1140 if (strcmp(optarg, MSG_ORIG(MSG_ARG_DIRECT)) == 0) { 1141 if (Bdflag == SET_FALSE) { 1142 eprintf(ofl->ofl_lml, ERR_FATAL, 1143 MSG_INTL(MSG_ARG_INCOMP), 1144 MSG_ORIG(MSG_ARG_BNODIRECT), 1145 MSG_ORIG(MSG_ARG_BDIRECT)); 1146 ofl->ofl_flags |= FLG_OF_FATAL; 1147 } else 1148 Bdflag = SET_TRUE; 1149 } else if (strcmp(optarg, 1150 MSG_ORIG(MSG_ARG_NODIRECT)) == 0) { 1151 if (Bdflag == SET_TRUE) { 1152 eprintf(ofl->ofl_lml, ERR_FATAL, 1153 MSG_INTL(MSG_ARG_INCOMP), 1154 MSG_ORIG(MSG_ARG_BDIRECT), 1155 MSG_ORIG(MSG_ARG_BNODIRECT)); 1156 ofl->ofl_flags |= FLG_OF_FATAL; 1157 } else 1158 Bdflag = SET_FALSE; 1159 } else if (strcmp(optarg, 1160 MSG_ORIG(MSG_STR_SYMBOLIC)) == 0) 1161 Bsflag = TRUE; 1162 else if (strcmp(optarg, MSG_ORIG(MSG_ARG_REDUCE)) == 0) 1163 ofl->ofl_flags |= FLG_OF_PROCRED; 1164 else if (strcmp(optarg, MSG_ORIG(MSG_STR_LOCAL)) == 0) 1165 Blflag = TRUE; 1166 else if (strcmp(optarg, 1167 MSG_ORIG(MSG_ARG_TRANSLATOR)) == 0) 1168 Btflag = TRUE; 1169 else if (strcmp(optarg, MSG_ORIG(MSG_ARG_GROUP)) == 0) 1170 Bgflag = TRUE; 1171 else if (strcmp(optarg, 1172 MSG_ORIG(MSG_STR_ELIMINATE)) == 0) 1173 Beflag = TRUE; 1174 else if (strcmp(optarg, MSG_ORIG(MSG_STR_LD_DYNAMIC)) && 1175 strcmp(optarg, MSG_ORIG(MSG_ARG_STATIC))) { 1176 eprintf(ofl->ofl_lml, ERR_FATAL, 1177 MSG_INTL(MSG_ARG_ILLEGAL), 1178 MSG_ORIG(MSG_ARG_CB), optarg); 1179 ofl->ofl_flags |= FLG_OF_FATAL; 1180 } 1181 break; 1182 1183 case 'G': 1184 Gflag = TRUE; 1185 break; 1186 1187 case 'L': 1188 break; 1189 1190 case 'M': 1191 if (list_appendc(&(ofl->ofl_maps), optarg) == 0) 1192 return (S_ERROR); 1193 break; 1194 1195 case 'N': 1196 break; 1197 1198 case 'Q': 1199 if ((optarg[0] == 'n') && (optarg[1] == '\0')) { 1200 if (Qflag != SET_UNKNOWN) 1201 eprintf(ofl->ofl_lml, ERR_WARNING, 1202 MSG_INTL(MSG_ARG_MTONCE), 1203 MSG_ORIG(MSG_ARG_CQ)); 1204 else 1205 Qflag = SET_FALSE; 1206 } else if ((optarg[0] == 'y') && (optarg[1] == '\0')) { 1207 if (Qflag != SET_UNKNOWN) 1208 eprintf(ofl->ofl_lml, ERR_WARNING, 1209 MSG_INTL(MSG_ARG_MTONCE), 1210 MSG_ORIG(MSG_ARG_CQ)); 1211 else 1212 Qflag = SET_TRUE; 1213 } else { 1214 eprintf(ofl->ofl_lml, ERR_FATAL, 1215 MSG_INTL(MSG_ARG_ILLEGAL), 1216 MSG_ORIG(MSG_ARG_CQ), optarg); 1217 ofl->ofl_flags |= FLG_OF_FATAL; 1218 } 1219 break; 1220 1221 case 'S': 1222 if (list_appendc(&lib_support, optarg) == 0) 1223 return (S_ERROR); 1224 break; 1225 1226 case 'V': 1227 if (!Vflag) 1228 (void) fprintf(stderr, MSG_ORIG(MSG_STR_STRNL), 1229 ofl->ofl_sgsid); 1230 Vflag = TRUE; 1231 break; 1232 1233 case 'Y': 1234 if (strncmp(optarg, MSG_ORIG(MSG_ARG_LCOM), 2) == 0) { 1235 if (Llibdir) 1236 eprintf(ofl->ofl_lml, ERR_WARNING, 1237 MSG_INTL(MSG_ARG_MTONCE), 1238 MSG_ORIG(MSG_ARG_CYL)); 1239 else 1240 Llibdir = optarg + 2; 1241 } else if (strncmp(optarg, 1242 MSG_ORIG(MSG_ARG_UCOM), 2) == 0) { 1243 if (Ulibdir) 1244 eprintf(ofl->ofl_lml, ERR_WARNING, 1245 MSG_INTL(MSG_ARG_MTONCE), 1246 MSG_ORIG(MSG_ARG_CYU)); 1247 else 1248 Ulibdir = optarg + 2; 1249 } else if (strncmp(optarg, 1250 MSG_ORIG(MSG_ARG_PCOM), 2) == 0) { 1251 if (Plibpath) 1252 eprintf(ofl->ofl_lml, ERR_WARNING, 1253 MSG_INTL(MSG_ARG_MTONCE), 1254 MSG_ORIG(MSG_ARG_CYP)); 1255 else 1256 Plibpath = optarg + 2; 1257 } else { 1258 eprintf(ofl->ofl_lml, ERR_FATAL, 1259 MSG_INTL(MSG_ARG_ILLEGAL), 1260 MSG_ORIG(MSG_ARG_CY), optarg); 1261 ofl->ofl_flags |= FLG_OF_FATAL; 1262 } 1263 break; 1264 1265 case '?': 1266 (*error)++; 1267 break; 1268 1269 default: 1270 break; 1271 } 1272 } 1273 return (1); 1274 } 1275 1276 /* 1277 * Parsing options pass2 for 1278 */ 1279 static uintptr_t 1280 parseopt_pass2(Ofl_desc *ofl, int argc, char **argv) 1281 { 1282 int c; 1283 1284 while ((c = getopt(argc, argv, MSG_ORIG(MSG_STR_OPTIONS))) != -1) { 1285 Ifl_desc *ifl; 1286 Sym_desc *sdp; 1287 1288 DBG_CALL(Dbg_args_flags(ofl->ofl_lml, (optind - 1), c)); 1289 switch (c) { 1290 case 'l': 1291 if (ld_find_library(optarg, ofl) == S_ERROR) 1292 return (S_ERROR); 1293 break; 1294 case 'B': 1295 if (strcmp(optarg, 1296 MSG_ORIG(MSG_STR_LD_DYNAMIC)) == 0) { 1297 if (ofl->ofl_flags & FLG_OF_DYNAMIC) 1298 ofl->ofl_flags |= 1299 FLG_OF_DYNLIBS; 1300 else { 1301 eprintf(ofl->ofl_lml, ERR_FATAL, 1302 MSG_INTL(MSG_ARG_INCOMP), 1303 MSG_ORIG(MSG_ARG_DN), 1304 MSG_ORIG(MSG_ARG_BDYNAMIC)); 1305 ofl->ofl_flags |= FLG_OF_FATAL; 1306 } 1307 } else if (strcmp(optarg, 1308 MSG_ORIG(MSG_ARG_STATIC)) == 0) 1309 ofl->ofl_flags &= ~FLG_OF_DYNLIBS; 1310 break; 1311 case 'L': 1312 if (ld_add_libdir(ofl, optarg) == S_ERROR) 1313 return (S_ERROR); 1314 break; 1315 case 'N': 1316 /* 1317 * Record DT_NEEDED string 1318 */ 1319 if (!(ofl->ofl_flags & FLG_OF_DYNAMIC)) { 1320 eprintf(ofl->ofl_lml, ERR_FATAL, 1321 MSG_INTL(MSG_ARG_INCOMP), 1322 MSG_ORIG(MSG_ARG_DN), 1323 MSG_ORIG(MSG_ARG_CN)); 1324 ofl->ofl_flags |= FLG_OF_FATAL; 1325 } 1326 if (((ifl = 1327 libld_calloc(1, sizeof (Ifl_desc))) == 0) || 1328 (list_appendc(&ofl->ofl_sos, ifl) == 0)) 1329 return (S_ERROR); 1330 1331 ifl->ifl_name = MSG_INTL(MSG_STR_COMMAND); 1332 ifl->ifl_soname = optarg; 1333 ifl->ifl_flags = (FLG_IF_NEEDSTR | 1334 FLG_IF_FILEREF | FLG_IF_DEPREQD); 1335 1336 break; 1337 case 'D': 1338 (void) dbg_setup(optarg, dbg_desc, 1339 &ofl->ofl_name, 2); 1340 break; 1341 case 'u': 1342 if (ld_sym_add_u(optarg, ofl) == 1343 (Sym_desc *)S_ERROR) 1344 return (S_ERROR); 1345 break; 1346 case 'z': 1347 if ((strncmp(optarg, MSG_ORIG(MSG_ARG_LD32), 1348 MSG_ARG_LD32_SIZE) == 0) || 1349 (strncmp(optarg, MSG_ORIG(MSG_ARG_LD64), 1350 MSG_ARG_LD64_SIZE) == 0)) { 1351 if (createargv(ofl, 0) == S_ERROR) 1352 return (S_ERROR); 1353 } else if (strcmp(optarg, 1354 MSG_ORIG(MSG_ARG_ALLEXTRT)) == 0) { 1355 ofl->ofl_flags1 |= FLG_OF1_ALLEXRT; 1356 ofl->ofl_flags1 &= ~FLG_OF1_WEAKEXT; 1357 } else if (strcmp(optarg, 1358 MSG_ORIG(MSG_ARG_WEAKEXT)) == 0) { 1359 ofl->ofl_flags1 |= FLG_OF1_WEAKEXT; 1360 ofl->ofl_flags1 &= ~FLG_OF1_ALLEXRT; 1361 } else if (strcmp(optarg, 1362 MSG_ORIG(MSG_ARG_DFLEXTRT)) == 0) { 1363 ofl->ofl_flags1 &= 1364 ~(FLG_OF1_ALLEXRT | FLG_OF1_WEAKEXT); 1365 } else if (strcmp(optarg, 1366 MSG_ORIG(MSG_ARG_DIRECT)) == 0) { 1367 ofl->ofl_flags1 |= FLG_OF1_ZDIRECT; 1368 } else if (strcmp(optarg, 1369 MSG_ORIG(MSG_ARG_NODIRECT)) == 0) { 1370 ofl->ofl_flags1 &= ~FLG_OF1_ZDIRECT; 1371 ofl->ofl_flags1 |= FLG_OF1_NDIRECT; 1372 } else if (strcmp(optarg, 1373 MSG_ORIG(MSG_ARG_IGNORE)) == 0) { 1374 ofl->ofl_flags1 |= FLG_OF1_IGNORE; 1375 } else if (strcmp(optarg, 1376 MSG_ORIG(MSG_ARG_RECORD)) == 0) { 1377 ofl->ofl_flags1 &= ~FLG_OF1_IGNORE; 1378 } else if (strcmp(optarg, 1379 MSG_ORIG(MSG_ARG_LAZYLOAD)) == 0) { 1380 ofl->ofl_flags1 |= FLG_OF1_LAZYLD; 1381 } else if (strcmp(optarg, 1382 MSG_ORIG(MSG_ARG_NOLAZYLOAD)) == 0) { 1383 ofl->ofl_flags1 &= ~ FLG_OF1_LAZYLD; 1384 } else if (strcmp(optarg, 1385 MSG_ORIG(MSG_ARG_GROUPPERM)) == 0) { 1386 ofl->ofl_flags1 |= FLG_OF1_GRPPRM; 1387 } else if (strcmp(optarg, 1388 MSG_ORIG(MSG_ARG_NOGROUPPERM)) == 0) { 1389 ofl->ofl_flags1 &= ~FLG_OF1_GRPPRM; 1390 } else if (strncmp(optarg, 1391 MSG_ORIG(MSG_ARG_INITARRAY), 1392 MSG_ARG_INITARRAY_SIZE) == 0) { 1393 if (((sdp = ld_sym_add_u(optarg + 1394 MSG_ARG_INITARRAY_SIZE, ofl)) == 1395 (Sym_desc *)S_ERROR) || 1396 (list_appendc(&ofl->ofl_initarray, 1397 sdp) == 0)) 1398 return (S_ERROR); 1399 } else if (strncmp(optarg, 1400 MSG_ORIG(MSG_ARG_FINIARRAY), 1401 MSG_ARG_FINIARRAY_SIZE) == 0) { 1402 if (((sdp = ld_sym_add_u(optarg + 1403 MSG_ARG_FINIARRAY_SIZE, ofl)) == 1404 (Sym_desc *)S_ERROR) || 1405 (list_appendc(&ofl->ofl_finiarray, 1406 sdp) == 0)) 1407 return (S_ERROR); 1408 } else if (strncmp(optarg, 1409 MSG_ORIG(MSG_ARG_PREINITARRAY), 1410 MSG_ARG_PREINITARRAY_SIZE) == 0) { 1411 if (((sdp = ld_sym_add_u(optarg + 1412 MSG_ARG_PREINITARRAY_SIZE, ofl)) == 1413 (Sym_desc *)S_ERROR) || 1414 (list_appendc(&ofl->ofl_preiarray, 1415 sdp) == 0)) 1416 return (S_ERROR); 1417 } else if (strncmp(optarg, 1418 MSG_ORIG(MSG_ARG_RTLDINFO), 1419 MSG_ARG_RTLDINFO_SIZE) == 0) { 1420 if (((sdp = ld_sym_add_u(optarg + 1421 MSG_ARG_RTLDINFO_SIZE, ofl)) == 1422 (Sym_desc *)S_ERROR) || 1423 (list_appendc(&ofl->ofl_rtldinfo, 1424 sdp) == 0)) 1425 return (S_ERROR); 1426 } else if (strncmp(optarg, 1427 MSG_ORIG(MSG_ARG_DTRACE), 1428 MSG_ARG_DTRACE_SIZE) == 0) { 1429 if ((sdp = ld_sym_add_u(optarg + 1430 MSG_ARG_DTRACE_SIZE, ofl)) == 1431 (Sym_desc *)S_ERROR) 1432 return (S_ERROR); 1433 ofl->ofl_dtracesym = sdp; 1434 } 1435 default: 1436 break; 1437 } 1438 } 1439 return (1); 1440 } 1441 1442 /* 1443 * 1444 * Pass 1 -- process_flags: collects all options and sets flags 1445 */ 1446 static uintptr_t 1447 process_flags_com(Ofl_desc *ofl, int argc, char **argv, int *e) 1448 { 1449 for (; optind < argc; optind++) { 1450 /* 1451 * If we detect some more options return to getopt(). 1452 * Checking argv[optind][1] against null prevents a forever 1453 * loop if an unadorned `-' argument is passed to us. 1454 */ 1455 while ((optind < argc) && (argv[optind][0] == '-')) { 1456 if (argv[optind][1] != '\0') { 1457 if (parseopt_pass1(ofl, argc, argv, e) == 1458 S_ERROR) 1459 return (S_ERROR); 1460 } else if (++optind < argc) 1461 continue; 1462 } 1463 if (optind >= argc) 1464 break; 1465 ofl->ofl_objscnt++; 1466 } 1467 return (1); 1468 } 1469 1470 uintptr_t 1471 ld_process_flags(Ofl_desc *ofl, int argc, char **argv) 1472 { 1473 int error = 0; /* Collect all argument errors before exit */ 1474 1475 if (argc < 2) { 1476 usage_mesg(FALSE); 1477 return (S_ERROR); 1478 } 1479 1480 /* 1481 * Option handling 1482 */ 1483 if (process_flags_com(ofl, argc, argv, &error) == S_ERROR) 1484 return (S_ERROR); 1485 1486 /* 1487 * Having parsed everything, did we have any errors. 1488 */ 1489 if (error) { 1490 usage_mesg(TRUE); 1491 return (S_ERROR); 1492 } 1493 1494 return (check_flags(ofl, argc)); 1495 } 1496 1497 /* 1498 * Pass 2 -- process_files: skips the flags collected in pass 1 and processes 1499 * files. 1500 */ 1501 static uintptr_t 1502 process_files_com(Ofl_desc *ofl, int argc, char **argv) 1503 { 1504 for (; optind < argc; optind++) { 1505 int fd; 1506 Ifl_desc *ifl; 1507 char *path; 1508 Rej_desc rej = { 0 }; 1509 1510 /* 1511 * If we detect some more options return to getopt(). 1512 * Checking argv[optind][1] against null prevents a forever 1513 * loop if an unadorned `-' argument is passed to us. 1514 */ 1515 while ((optind < argc) && (argv[optind][0] == '-')) { 1516 if (argv[optind][1] != '\0') { 1517 if (parseopt_pass2(ofl, argc, argv) == S_ERROR) 1518 return (S_ERROR); 1519 } else if (++optind < argc) 1520 continue; 1521 } 1522 if (optind >= argc) 1523 break; 1524 1525 path = argv[optind]; 1526 if ((fd = open(path, O_RDONLY)) == -1) { 1527 int err = errno; 1528 1529 eprintf(ofl->ofl_lml, ERR_FATAL, 1530 MSG_INTL(MSG_SYS_OPEN), path, strerror(err)); 1531 ofl->ofl_flags |= FLG_OF_FATAL; 1532 continue; 1533 } 1534 1535 DBG_CALL(Dbg_args_files(ofl->ofl_lml, optind, path)); 1536 1537 ifl = ld_process_open(path, path, &fd, ofl, 1538 (FLG_IF_CMDLINE | FLG_IF_NEEDED), &rej); 1539 if (fd != -1) 1540 (void) close(fd); 1541 if (ifl == (Ifl_desc *)S_ERROR) 1542 return (S_ERROR); 1543 1544 /* 1545 * Check for mismatched input. 1546 */ 1547 if (rej.rej_type) { 1548 eprintf(ofl->ofl_lml, ERR_FATAL, 1549 MSG_INTL(reject[rej.rej_type]), 1550 rej.rej_name ? rej.rej_name : 1551 MSG_INTL(MSG_STR_UNKNOWN), conv_reject_desc(&rej)); 1552 ofl->ofl_flags |= FLG_OF_FATAL; 1553 return (1); 1554 } 1555 } 1556 return (1); 1557 } 1558 1559 uintptr_t 1560 ld_process_files(Ofl_desc *ofl, int argc, char **argv) 1561 { 1562 optind = 1; /* reinitialize optind */ 1563 1564 /* 1565 * Process command line files (taking into account any applicable 1566 * preseeding flags). Return if any fatal errors have occurred. 1567 */ 1568 if (process_files_com(ofl, argc, argv) == S_ERROR) 1569 return (S_ERROR); 1570 if (ofl->ofl_flags & FLG_OF_FATAL) 1571 return (1); 1572 1573 /* 1574 * Now that all command line files have been processed see if there are 1575 * any additional `needed' shared object dependencies. 1576 */ 1577 if (ofl->ofl_soneed.head) 1578 if (ld_finish_libs(ofl) == S_ERROR) 1579 return (S_ERROR); 1580 1581 /* 1582 * If rescanning archives is enabled, do so now to determine whether 1583 * there might still be members extracted to satisfy references from any 1584 * explicit objects. Continue until no new objects are extracted. Note 1585 * that this pass is carried out *after* processing any implicit objects 1586 * (above) as they may already have resolved any undefined references 1587 * from any explicit dependencies. 1588 */ 1589 if (ofl->ofl_flags1 & FLG_OF1_RESCAN) 1590 ofl->ofl_flags1 |= FLG_OF1_EXTRACT; 1591 while ((ofl->ofl_flags1 & (FLG_OF1_RESCAN | FLG_OF1_EXTRACT)) == 1592 (FLG_OF1_RESCAN | FLG_OF1_EXTRACT)) { 1593 Listnode *lnp; 1594 Ar_desc *adp; 1595 1596 ofl->ofl_flags1 &= ~FLG_OF1_EXTRACT; 1597 1598 DBG_CALL(Dbg_file_ar_rescan(ofl->ofl_lml)); 1599 1600 for (LIST_TRAVERSE(&ofl->ofl_ars, lnp, adp)) { 1601 const char *name = adp->ad_name; 1602 uintptr_t error; 1603 int fd; 1604 1605 /* 1606 * If this archive was processed with -z allextract, 1607 * then all members have already been extracted. 1608 */ 1609 if (adp->ad_elf == (Elf *)NULL) 1610 continue; 1611 1612 /* 1613 * Reopen the file. 1614 */ 1615 if ((fd = open(name, O_RDONLY)) == -1) { 1616 int err = errno; 1617 1618 eprintf(ofl->ofl_lml, ERR_FATAL, 1619 MSG_INTL(MSG_SYS_OPEN), name, 1620 strerror(err)); 1621 ofl->ofl_flags |= FLG_OF_FATAL; 1622 return (S_ERROR); 1623 } 1624 1625 /* 1626 * Reestablish any archive specific command line flags. 1627 */ 1628 ofl->ofl_flags1 &= ~MSK_OF1_ARCHIVE; 1629 ofl->ofl_flags1 |= (adp->ad_flags & MSK_OF1_ARCHIVE); 1630 1631 error = ld_process_archive(adp->ad_name, fd, adp, ofl); 1632 (void) close(fd); 1633 1634 if (error == S_ERROR) 1635 return (S_ERROR); 1636 if (ofl->ofl_flags & FLG_OF_FATAL) 1637 return (1); 1638 } 1639 } 1640 1641 /* 1642 * If debugging, provide statistics on each archives extraction, or flag 1643 * any archive that has provided no members. Note that this could be a 1644 * nice place to free up much of the archive infrastructure, as we've 1645 * extracted any members we need. However, as we presently don't free 1646 * anything under ld(1) there's not much point in proceeding further. 1647 */ 1648 DBG_CALL(Dbg_statistics_ar(ofl)); 1649 1650 /* 1651 * If any version definitions have been established, either via input 1652 * from a mapfile or from the input relocatable objects, make sure any 1653 * version dependencies are satisfied, and version symbols created. 1654 */ 1655 if (ofl->ofl_verdesc.head) 1656 if (ld_vers_check_defs(ofl) == S_ERROR) 1657 return (S_ERROR); 1658 1659 /* 1660 * If segment ordering was specified (using mapfile) verify things 1661 * are ok. 1662 */ 1663 if (ofl->ofl_flags & FLG_OF_SEGORDER) 1664 ld_ent_check(ofl); 1665 1666 return (1); 1667 } 1668 1669 uintptr_t 1670 ld_init_strings(Ofl_desc *ofl) 1671 { 1672 uint_t stflags; 1673 1674 if (ofl->ofl_flags1 & FLG_OF1_NCSTTAB) 1675 stflags = 0; 1676 else 1677 stflags = FLG_STNEW_COMPRESS; 1678 1679 if (((ofl->ofl_shdrsttab = st_new(stflags)) == 0) || 1680 ((ofl->ofl_strtab = st_new(stflags)) == 0) || 1681 ((ofl->ofl_dynstrtab = st_new(stflags)) == 0)) 1682 return (S_ERROR); 1683 1684 return (0); 1685 } 1686