summaryrefslogtreecommitdiff
path: root/libc-parts/ia32-cmain.c
blob: a81a2daeafb0294e3f0348154c98e570542ba1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* ia32-cmain.c - Startup code for the ia32.
   Copyright (C) 2003, 2004, 2005, 2008 Free Software Foundation, Inc.
   Written by Marcus Brinkmann.

   This file is part of the GNU Hurd.

   The GNU Hurd is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2, or (at
   your option) any later version.

   The GNU Hurd is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. */

#if HAVE_CONFIG_H
#include <config.h>
#endif

#include <alloca.h>
#include <stdint.h>
#include <string.h>

#ifdef USE_L4
#include <l4/globals.h>
#include <l4/init.h>
#include <l4/stubs.h>
#include <l4/stubs-init.h>
#endif

#include <hurd/startup.h>
#include <hurd/mm.h>
#include <hurd/stddef.h>
#include <hurd/storage.h>

/* Initialized by the machine-specific startup-code.  */
extern struct hurd_startup_data *__hurd_startup_data;


extern void exit (int status)  __attribute__ ((__noreturn__));
extern int main (int, char *[]);

char *program_name = "in crt0";

extern char _stack, _stack_end;

static void
finish (void)
{
  int argc = 0;
  char **argv = 0;

  if (! ((void *) &_stack <= (void *) &argc
	 && (void *) &argc < (void *) &_stack_end))
    /* We are not running on the initial stack.  Free it.  */
    {
      void *p;
      for (p = &_stack; p < (void *) &_stack_end; p += PAGESIZE)
	{
	  struct hurd_object_desc *desc;
	  int i;
	  for (i = 0, desc = &__hurd_startup_data->descs[0];
	       i < __hurd_startup_data->desc_count;
	       i ++, desc ++)
	    {
	      if (VG_ADDR_EQ (VG_PTR_TO_PAGE (p), desc->object))
		{
		  storage_free (desc->storage, true);
		  break;
		}
	    }
	  assert (i != __hurd_startup_data->desc_count);
	}
    }

  if (__hurd_startup_data->argz_len)
    /* A command line was passed.  We assume that it is in argz
       format.  */
    {
      char *str = __hurd_startup_data->argz;

      /* First time around we count the number of arguments.  */
      int offset;

      argc = 0;
      for (offset = 0;
	   offset < __hurd_startup_data->argz_len;
	   offset += strlen (str + offset) + 1)
	argc ++;
      
      /* Now we fill in the argv.  */
      argv = alloca (sizeof (char *) * (argc + 1));

      str = __hurd_startup_data->argz;
      argc = 0;
      for (offset = 0;
	   offset < __hurd_startup_data->argz_len;
	   offset += strlen (str + offset) + 1)
	argv[argc ++] = str + offset;
      argv[argc] = 0;
    }
  else
    {
      argc = 1;

      argv = alloca (sizeof (char *) * 2);
      argv[0] = (char *) program_name;
      argv[1] = 0;
    }

  program_name = "unknown";
  if (argv[0])
    program_name = (strrchr (argv[0], '/')
		    ? strrchr (argv[0], '/') + 1 : argv[0]);

  /* Now invoke the main function.  */
  exit (main (argc, argv));
}

/* Initialize libl4, setup the argument vector, and pass control over
   to the main function.  */
void
cmain (void)
{
#ifdef USE_L4
  l4_init ();
  l4_init_stubs ();
#endif

  s_printf ("In cmain\n");

  mm_init (__hurd_startup_data->activity);

  extern void (*_pthread_init_routine)(void (*entry) (void *), void *)
    __attribute__ ((noreturn, weak));
  if (_pthread_init_routine)
    _pthread_init_routine (finish, NULL);
  else
    finish ();

  /* Never reached.  */
}