Subversion Repositories HelenOS

Rev

Rev 4573 | Rev 4621 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4573 Rev 4592
1
/*
1
/*
2
 * Copyright (c) 2005 Martin Decky
2
 * Copyright (c) 2005 Martin Decky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup init Init
29
/** @addtogroup init Init
30
 * @brief Init process for user space environment configuration.
30
 * @brief Init process for user space environment configuration.
31
 * @{
31
 * @{
32
 */
32
 */
33
/**
33
/**
34
 * @file
34
 * @file
35
 */
35
 */
36
 
36
 
37
#include <stdio.h>
37
#include <stdio.h>
38
#include <unistd.h>
38
#include <unistd.h>
39
#include <ipc/ipc.h>
39
#include <ipc/ipc.h>
40
#include <vfs/vfs.h>
40
#include <vfs/vfs.h>
41
#include <bool.h>
41
#include <bool.h>
42
#include <errno.h>
42
#include <errno.h>
43
#include <fcntl.h>
43
#include <fcntl.h>
44
#include <task.h>
44
#include <task.h>
45
#include <malloc.h>
45
#include <malloc.h>
46
#include <macros.h>
46
#include <macros.h>
47
#include <string.h>
47
#include <string.h>
48
#include <devmap.h>
48
#include <devmap.h>
49
#include "init.h"
49
#include "init.h"
50
 
50
 
51
static void info_print(void)
51
static void info_print(void)
52
{
52
{
53
    printf(NAME ": HelenOS init\n");
53
    printf(NAME ": HelenOS init\n");
54
}
54
}
55
 
55
 
56
static bool mount_root(const char *fstype)
56
static bool mount_root(const char *fstype)
57
{
57
{
58
    int rc = -1;
-
 
59
    char *opts = "";
58
    char *opts = "";
60
    const char *root_dev = "initrd";
59
    const char *root_dev = "initrd";
61
   
60
   
62
    if (str_cmp(fstype, "tmpfs") == 0)
61
    if (str_cmp(fstype, "tmpfs") == 0)
63
        opts = "restore";
62
        opts = "restore";
64
 
63
   
65
    while (rc < 0) {
-
 
66
        rc = mount(fstype, "/", root_dev, opts, IPC_FLAG_BLOCKING);
64
    int rc = mount(fstype, "/", root_dev, opts, IPC_FLAG_BLOCKING);
67
       
65
   
68
        switch (rc) {
66
    switch (rc) {
69
        case EOK:
67
    case EOK:
70
            printf(NAME ": Root filesystem mounted, %s at %s\n",
68
        printf(NAME ": Root filesystem mounted, %s at %s\n",
71
                fstype, root_dev);
69
            fstype, root_dev);
72
            break;
70
        break;
73
        case EBUSY:
71
    case EBUSY:
74
            printf(NAME ": Root filesystem already mounted\n");
72
        printf(NAME ": Root filesystem already mounted\n");
75
            break;
73
        return false;
76
        case ELIMIT:
74
    case ELIMIT:
77
            printf(NAME ": Unable to mount root filesystem\n");
75
        printf(NAME ": Unable to mount root filesystem\n");
78
            return false;
76
        return false;
79
        case ENOENT:
77
    case ENOENT:
80
            printf(NAME ": Unknown filesystem type (%s)\n", fstype);
78
        printf(NAME ": Unknown filesystem type (%s)\n", fstype);
81
            return false;
79
        return false;
82
        }
80
    default:
-
 
81
        printf(NAME ": Error mounting root filesystem (%d)\n", rc);
-
 
82
        return false;
83
    }
83
    }
84
   
84
   
85
    return true;
85
    return true;
86
}
86
}
87
 
87
 
88
static bool mount_devfs(void)
88
static bool mount_devfs(void)
89
{
89
{
-
 
90
    char null[MAX_DEVICE_NAME];
90
    int rc = -1;
91
    int null_id = devmap_null_create();
91
   
92
   
92
    while (rc < 0) {
93
    if (null_id == -1) {
-
 
94
        printf(NAME ": Unable to create null device\n");
-
 
95
        return false;
-
 
96
    }
-
 
97
   
-
 
98
    snprintf(null, MAX_DEVICE_NAME, "null%d", null_id);
93
        rc = mount("devfs", "/dev", "null", "", IPC_FLAG_BLOCKING);
99
    int rc = mount("devfs", "/dev", null, "", IPC_FLAG_BLOCKING);
94
       
100
   
95
        switch (rc) {
101
    switch (rc) {
96
        case EOK:
102
    case EOK:
97
            printf(NAME ": Device filesystem mounted\n");
103
        printf(NAME ": Device filesystem mounted\n");
98
            break;
104
        break;
99
        case EBUSY:
105
    case EBUSY:
100
            printf(NAME ": Device filesystem already mounted\n");
106
        printf(NAME ": Device filesystem already mounted\n");
-
 
107
        devmap_null_destroy(null_id);
101
            break;
108
        return false;
102
        case ELIMIT:
109
    case ELIMIT:
103
            printf(NAME ": Unable to mount device filesystem\n");
110
        printf(NAME ": Unable to mount device filesystem\n");
-
 
111
        devmap_null_destroy(null_id);
104
            return false;
112
        return false;
105
        case ENOENT:
113
    case ENOENT:
106
            printf(NAME ": Unknown filesystem type (devfs)\n");
114
        printf(NAME ": Unknown filesystem type (devfs)\n");
-
 
115
        devmap_null_destroy(null_id);
107
            return false;
116
        return false;
108
        }
117
    default:
-
 
118
        printf(NAME ": Error mounting device filesystem (%d)\n", rc);
-
 
119
        devmap_null_destroy(null_id);
-
 
120
        return false;
109
    }
121
    }
110
   
122
   
111
    return true;
123
    return true;
112
}
124
}
113
 
125
 
114
static void spawn(char *fname)
126
static void spawn(char *fname)
115
{
127
{
116
    char *argv[2];
128
    char *argv[2];
117
   
129
   
118
    printf(NAME ": Spawning %s\n", fname);
130
    printf(NAME ": Spawning %s\n", fname);
119
   
131
   
120
    argv[0] = fname;
132
    argv[0] = fname;
121
    argv[1] = NULL;
133
    argv[1] = NULL;
122
   
134
   
123
    if (!task_spawn(fname, argv))
135
    if (!task_spawn(fname, argv))
124
        printf(NAME ": Error spawning %s\n", fname);
136
        printf(NAME ": Error spawning %s\n", fname);
125
}
137
}
126
 
138
 
127
static void getvc(char *dev, char *app)
139
static void getvc(char *dev, char *app)
128
{
140
{
129
    char *argv[4];
141
    char *argv[4];
130
    char vc[MAX_DEVICE_NAME];
142
    char vc[MAX_DEVICE_NAME];
131
    int rc;
143
    int rc;
132
   
144
   
133
    snprintf(vc, MAX_DEVICE_NAME, "/dev/%s", dev);
145
    snprintf(vc, MAX_DEVICE_NAME, "/dev/%s", dev);
134
   
146
   
135
    printf(NAME ": Spawning getvc on %s\n", vc);
147
    printf(NAME ": Spawning getvc on %s\n", vc);
136
   
148
   
137
    dev_handle_t handle;
149
    dev_handle_t handle;
138
    rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING);
150
    rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING);
139
   
151
   
140
    if (rc == EOK) {
152
    if (rc == EOK) {
141
        argv[0] = "/app/getvc";
153
        argv[0] = "/app/getvc";
142
        argv[1] = vc;
154
        argv[1] = vc;
143
        argv[2] = app;
155
        argv[2] = app;
144
        argv[3] = NULL;
156
        argv[3] = NULL;
145
       
157
       
146
        if (!task_spawn("/app/getvc", argv))
158
        if (!task_spawn("/app/getvc", argv))
147
            printf(NAME ": Error spawning getvc on %s\n", vc);
159
            printf(NAME ": Error spawning getvc on %s\n", vc);
148
    } else {
160
    } else {
149
        printf(NAME ": Error waiting on %s\n", vc);
161
        printf(NAME ": Error waiting on %s\n", vc);
150
    }
162
    }
151
}
163
}
152
 
164
 
153
void mount_data(void)
165
void mount_data(void)
154
{
166
{
155
    int rc;
167
    int rc;
156
 
168
 
157
    printf("Trying to mount disk0 on /data... ");
169
    printf("Trying to mount disk0 on /data... ");
158
    fflush(stdout);
170
    fflush(stdout);
159
 
171
 
160
    rc = mount("fat", "/data", "disk0", "wtcache", 0);
172
    rc = mount("fat", "/data", "disk0", "wtcache", 0);
161
    if (rc == EOK)
173
    if (rc == EOK)
162
        printf("OK\n");
174
        printf("OK\n");
163
    else
175
    else
164
        printf("Failed\n");
176
        printf("Failed\n");
165
}
177
}
166
 
178
 
167
int main(int argc, char *argv[])
179
int main(int argc, char *argv[])
168
{
180
{
169
    info_print();
181
    info_print();
170
   
182
   
171
    if (!mount_root(STRING(RDFMT))) {
183
    if (!mount_root(STRING(RDFMT))) {
172
        printf(NAME ": Exiting\n");
184
        printf(NAME ": Exiting\n");
173
        return -1;
185
        return -1;
174
    }
186
    }
175
   
187
   
176
    spawn("/srv/devfs");
188
    spawn("/srv/devfs");
177
   
189
   
178
    if (!mount_devfs()) {
190
    if (!mount_devfs()) {
179
        printf(NAME ": Exiting\n");
191
        printf(NAME ": Exiting\n");
180
        return -2;
192
        return -2;
181
    }
193
    }
182
   
194
   
183
    spawn("/srv/fb");
195
    spawn("/srv/fb");
184
    spawn("/srv/kbd");
196
    spawn("/srv/kbd");
185
    spawn("/srv/console");
197
    spawn("/srv/console");
186
    spawn("/srv/fhc");
198
    spawn("/srv/fhc");
187
    spawn("/srv/obio");
199
    spawn("/srv/obio");
188
    spawn("/srv/ata_bd");
200
    spawn("/srv/ata_bd");
189
    spawn("/srv/gxe_bd");
201
    spawn("/srv/gxe_bd");
190
 
202
   
191
    usleep(250000);
203
    usleep(250000); // FIXME
192
    mount_data();  
204
    mount_data();
193
 
205
   
194
    getvc("vc0", "/app/bdsh");
206
    getvc("vc0", "/app/bdsh");
195
    getvc("vc1", "/app/bdsh");
207
    getvc("vc1", "/app/bdsh");
196
    getvc("vc2", "/app/bdsh");
208
    getvc("vc2", "/app/bdsh");
197
    getvc("vc3", "/app/bdsh");
209
    getvc("vc3", "/app/bdsh");
198
    getvc("vc4", "/app/bdsh");
210
    getvc("vc4", "/app/bdsh");
199
    getvc("vc5", "/app/bdsh");
211
    getvc("vc5", "/app/bdsh");
200
    getvc("vc6", "/app/klog");
212
    getvc("vc6", "/app/klog");
201
   
213
   
202
    return 0;
214
    return 0;
203
}
215
}
204
 
216
 
205
/** @}
217
/** @}
206
 */
218
 */
207
 
219