Subversion Repositories HelenOS

Rev

Rev 4439 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1999 decky 1
/*
2445 decky 2
 * Copyright (c) 2007 Michal Konopa
3
 * Copyright (c) 2007 Martin Jelen
4
 * Copyright (c) 2007 Peter Majer
2475 jermar 5
 * Copyright (c) 2007 Jakub Jermar
1999 decky 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
 *
12
 * - Redistributions of source code must retain the above copyright
13
 *   notice, this list of conditions and the following disclaimer.
14
 * - Redistributions in binary form must reproduce the above copyright
15
 *   notice, this list of conditions and the following disclaimer in the
16
 *   documentation and/or other materials provided with the distribution.
17
 * - The name of the author may not be used to endorse or promote products
18
 *   derived from this software without specific prior written permission.
19
 *
20
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
 */
31
 
32
/** @addtogroup rd
33
 * @{
34
 */
35
 
36
/**
37
 * @file    rd.c
38
 * @brief   Initial RAM disk for HelenOS.
39
 */
40
 
41
#include <ipc/ipc.h>
42
#include <ipc/services.h>
43
#include <ipc/ns.h>
2005 decky 44
#include <sysinfo.h>
45
#include <as.h>
46
#include <ddi.h>
47
#include <align.h>
48
#include <bool.h>
1999 decky 49
#include <errno.h>
50
#include <async.h>
2445 decky 51
#include <align.h>
52
#include <async.h>
4668 trochtova 53
#include <fibril_sync.h>
3085 decky 54
#include <stdio.h>
4401 svoboda 55
#include <devmap.h>
4400 svoboda 56
#include <ipc/bd.h>
1999 decky 57
 
3085 decky 58
#define NAME "rd"
59
 
2475 jermar 60
/** Pointer to the ramdisk's image. */
2445 decky 61
static void *rd_addr;
2478 jermar 62
/** Size of the ramdisk. */
63
static size_t rd_size;
1999 decky 64
 
2475 jermar 65
/**
4668 trochtova 66
 * This rwlock protects the ramdisk's data.
2475 jermar 67
 * If we were to serve multiple requests (read + write or several writes)
68
 * concurrently (i.e. from two or more threads), each read and write needs to be
4668 trochtova 69
 * protected by this rwlock.
2475 jermar 70
 */
4668 trochtova 71
fibril_rwlock_t rd_lock;
2475 jermar 72
 
73
/** Handle one connection to ramdisk.
74
 *
75
 * @param iid       Hash of the request that opened the connection.
76
 * @param icall     Call data of the request that opened the connection.
77
 */
1999 decky 78
static void rd_connection(ipc_callid_t iid, ipc_call_t *icall)
79
{
80
    ipc_callid_t callid;
81
    ipc_call_t call;
82
    int retval;
2478 jermar 83
    void *fs_va = NULL;
3254 jermar 84
    off_t offset;
85
    size_t block_size;
86
    size_t maxblock_size;
1999 decky 87
 
2475 jermar 88
    /*
3254 jermar 89
     * Answer the first IPC_M_CONNECT_ME_TO call.
2475 jermar 90
     */
3254 jermar 91
    ipc_answer_0(iid, EOK);
2475 jermar 92
 
93
    /*
94
     * Now we wait for the client to send us its communication as_area.
95
     */
3085 decky 96
    int flags;
3254 jermar 97
    if (ipc_share_out_receive(&callid, &maxblock_size, &flags)) {
98
        fs_va = as_get_mappable_page(maxblock_size);
99
        if (fs_va) {
2678 jermar 100
            (void) ipc_share_out_finalize(callid, fs_va);
2475 jermar 101
        } else {
2619 jermar 102
            ipc_answer_0(callid, EHANGUP);
2475 jermar 103
            return;    
104
        }
105
    } else {
106
        /*
107
         * The client doesn't speak the same protocol.
108
         * At this point we can't handle protocol variations.
109
         * Close the connection.
110
         */
2619 jermar 111
        ipc_answer_0(callid, EHANGUP);
2475 jermar 112
        return;
113
    }
114
 
4416 decky 115
    while (true) {
1999 decky 116
        callid = async_get_call(&call);
117
        switch (IPC_GET_METHOD(call)) {
2471 jermar 118
        case IPC_M_PHONE_HUNGUP:
2475 jermar 119
            /*
120
             * The other side has hung up.
2518 jermar 121
             * Answer the message and exit the fibril.
2475 jermar 122
             */
2619 jermar 123
            ipc_answer_0(callid, EOK);
2471 jermar 124
            return;
4400 svoboda 125
        case BD_READ_BLOCK:
2471 jermar 126
            offset = IPC_GET_ARG1(call);
3254 jermar 127
            block_size = IPC_GET_ARG2(call);
128
            if (block_size > maxblock_size) {
2478 jermar 129
                /*
3254 jermar 130
                 * Maximum block size exceeded.
131
                 */
132
                retval = ELIMIT;
133
                break;
134
            }
135
            if (offset * block_size > rd_size - block_size) {
136
                /*
2478 jermar 137
                 * Reading past the end of the device.
138
                 */
139
                retval = ELIMIT;
140
                break;
141
            }
4668 trochtova 142
            fibril_rwlock_read_lock(&rd_lock);
3254 jermar 143
            memcpy(fs_va, rd_addr + offset * block_size, block_size);
4668 trochtova 144
            fibril_rwlock_read_unlock(&rd_lock);
2471 jermar 145
            retval = EOK;
146
            break;
4400 svoboda 147
        case BD_WRITE_BLOCK:
2475 jermar 148
            offset = IPC_GET_ARG1(call);
3254 jermar 149
            block_size = IPC_GET_ARG2(call);
150
            if (block_size > maxblock_size) {
2478 jermar 151
                /*
3254 jermar 152
                 * Maximum block size exceeded.
153
                 */
154
                retval = ELIMIT;
155
                break;
156
            }
157
            if (offset * block_size > rd_size - block_size) {
158
                /*
2478 jermar 159
                 * Writing past the end of the device.
160
                 */
161
                retval = ELIMIT;
162
                break;
163
            }
4668 trochtova 164
            fibril_rwlock_write_lock(&rd_lock);
3254 jermar 165
            memcpy(rd_addr + offset * block_size, fs_va, block_size);
4668 trochtova 166
            fibril_rwlock_write_unlock(&rd_lock);
2475 jermar 167
            retval = EOK;
168
            break;
2471 jermar 169
        default:
2475 jermar 170
            /*
171
             * The client doesn't speak the same protocol.
172
             * Instead of closing the connection, we just ignore
173
             * the call. This can be useful if the client uses a
174
             * newer version of the protocol.
175
             */
2471 jermar 176
            retval = EINVAL;
2475 jermar 177
            break;
1999 decky 178
        }
2619 jermar 179
        ipc_answer_0(callid, retval);
2471 jermar 180
    }
1999 decky 181
}
182
 
2475 jermar 183
/** Prepare the ramdisk image for operation. */
2005 decky 184
static bool rd_init(void)
1999 decky 185
{
2478 jermar 186
    rd_size = sysinfo_value("rd.size");
2471 jermar 187
    void *rd_ph_addr = (void *) sysinfo_value("rd.address.physical");
1999 decky 188
 
3085 decky 189
    if (rd_size == 0) {
190
        printf(NAME ": No RAM disk found\n");
2005 decky 191
        return false;
3085 decky 192
    }
1999 decky 193
 
2445 decky 194
    rd_addr = as_get_mappable_page(rd_size);
2005 decky 195
 
3085 decky 196
    int flags = AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE;
197
    int retval = physmem_map(rd_ph_addr, rd_addr,
2471 jermar 198
        ALIGN_UP(rd_size, PAGE_SIZE) >> PAGE_WIDTH, flags);
3908 decky 199
 
3085 decky 200
    if (retval < 0) {
201
        printf(NAME ": Error mapping RAM disk\n");
2445 decky 202
        return false;
3085 decky 203
    }
204
 
205
    printf(NAME ": Found RAM disk at %p, %d bytes\n", rd_ph_addr, rd_size);
206
 
4416 decky 207
    int rc = devmap_driver_register(NAME, rd_connection);
208
    if (rc < 0) {
209
        printf(NAME ": Unable to register driver (%d)\n", rc);
3085 decky 210
        return false;
211
    }
212
 
4410 svoboda 213
    dev_handle_t dev_handle;
4416 decky 214
    if (devmap_device_register("initrd", &dev_handle) != EOK) {
215
        devmap_hangup_phone(DEVMAP_DRIVER);
3085 decky 216
        printf(NAME ": Unable to register device\n");
217
        return false;
218
    }
4668 trochtova 219
 
220
    fibril_rwlock_initialize(&rd_lock);
3085 decky 221
 
2005 decky 222
    return true;
223
}
1999 decky 224
 
2005 decky 225
int main(int argc, char **argv)
226
{
3085 decky 227
    printf(NAME ": HelenOS RAM disk server\n");
2005 decky 228
 
3085 decky 229
    if (!rd_init())
230
        return -1;
231
 
232
    printf(NAME ": Accepting connections\n");
233
    async_manager();
234
 
235
    /* Never reached */
236
    return 0;
1999 decky 237
}
238
 
239
/**
240
 * @}
4416 decky 241
 */