Home | History | Annotate | Line # | Download | only in common
crt0-common.c revision 1.3
      1 /* $NetBSD: crt0-common.c,v 1.3 2011/02/18 23:37:36 joerg Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1998 Christos Zoulas
      5  * Copyright (c) 1995 Christopher G. Demetriou
      6  * All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. All advertising materials mentioning features or use of this software
     17  *    must display the following acknowledgement:
     18  *          This product includes software developed for the
     19  *          NetBSD Project.  See http://www.NetBSD.org/ for
     20  *          information about NetBSD.
     21  * 4. The name of the author may not be used to endorse or promote products
     22  *    derived from this software without specific prior written permission.
     23  *
     24  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     29  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     33  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34  *
     35  * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
     36  */
     37 
     38 #include <sys/cdefs.h>
     39 __RCSID("$NetBSD: crt0-common.c,v 1.3 2011/02/18 23:37:36 joerg Exp $");
     40 
     41 #include <sys/types.h>
     42 #include <sys/syscall.h>
     43 #include <machine/profile.h>
     44 #include <stdlib.h>
     45 #include <unistd.h>
     46 
     47 #include "rtld.h"
     48 
     49 extern int main(int, char **, char **);
     50 
     51 extern void	_init(void);
     52 extern void	_fini(void);
     53 
     54 /*
     55  * Arrange for _DYNAMIC to be weak and undefined (and therefore to show up
     56  * as being at address zero, unless something else defines it).  That way,
     57  * if we happen to be compiling without -static but with without any
     58  * shared libs present, things will still work.
     59  */
     60 
     61 #if __GNUC_PREREQ__(4,2)
     62 static int rtld_DYNAMIC __attribute__((__weakref__, __alias__("_DYNAMIC")));
     63 #define	DYNAMIC_SYM	rtld_DYNAMIC
     64 #else
     65 extern int _DYNAMIC __weak_reference(_DYNAMIC);
     66 #define	DYNAMIC_SYM	_DYNAMIC
     67 #endif
     68 
     69 #ifdef MCRT0
     70 extern void	monstartup(u_long, u_long);
     71 extern void	_mcleanup(void);
     72 extern unsigned char __etext, __eprol;
     73 #endif /* MCRT0 */
     74 
     75 char		**environ;
     76 struct ps_strings *__ps_strings = 0;
     77 
     78 static char	 empty_string[] = "";
     79 char		*__progname = empty_string;
     80 
     81 void		___start(int, char **, char **, void (*)(void),
     82     const Obj_Entry *, struct ps_strings *);
     83 
     84 #define	write(fd, s, n)	__syscall(SYS_write, (fd), (s), (n))
     85 
     86 #define	_FATAL(str)				\
     87 do {						\
     88 	write(2, str, sizeof(str)-1);		\
     89 	_exit(1);				\
     90 } while (0)
     91 
     92 void
     93 ___start(int argc, char **argv, char **envp,
     94     void (*cleanup)(void),			/* from shared loader */
     95     const Obj_Entry *obj,			/* from shared loader */
     96     struct ps_strings *ps_strings)
     97 {
     98 	environ = envp;
     99 
    100 	if (argv[0] != NULL) {
    101 		char *c;
    102 		__progname = argv[0];
    103 		for (c = argv[0]; *c; ++c) {
    104 			if (*c == '/')
    105 				__progname = c + 1;
    106 		}
    107 	} else {
    108 		__progname = empty_string;
    109 	}
    110 
    111 	if (ps_strings != NULL)
    112 		__ps_strings = ps_strings;
    113 
    114 	if (&DYNAMIC_SYM != NULL) {
    115 		if (obj == NULL)
    116 			_FATAL("NULL Obj_Entry pointer in GOT\n");
    117 		if (obj->magic != RTLD_MAGIC)
    118 			_FATAL("Corrupt Obj_Entry pointer in GOT\n");
    119 		if (obj->version != RTLD_VERSION)
    120 			_FATAL("Dynamic linker version mismatch\n");
    121 		atexit(cleanup);
    122 	}
    123 
    124 #ifdef MCRT0
    125 	atexit(_mcleanup);
    126 	monstartup((u_long)&__eprol, (u_long)&__etext);
    127 #endif
    128 
    129 	atexit(_fini);
    130 	_init();
    131 
    132 	exit(main(argc, argv, environ));
    133 }
    134