Subversion Repositories HelenOS

Rev

Rev 3022 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3022 Rev 4055
Line 26... Line 26...
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 fs
29
/** @addtogroup fs
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file    vfs.c
34
 * @file vfs.c
35
 * @brief   VFS service for HelenOS.
35
 * @brief VFS service for HelenOS.
36
 */
36
 */
37
 
37
 
38
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
39
#include <ipc/services.h>
39
#include <ipc/services.h>
40
#include <async.h>
40
#include <async.h>
Line 45... Line 45...
45
#include <as.h>
45
#include <as.h>
46
#include <libadt/list.h>
46
#include <libadt/list.h>
47
#include <atomic.h>
47
#include <atomic.h>
48
#include "vfs.h"
48
#include "vfs.h"
49
 
49
 
50
#define dprintf(...)    printf(__VA_ARGS__)
50
#define NAME "vfs"
51
 
51
 
52
static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall)
52
static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall)
53
{
53
{
54
    bool keep_on_going = 1;
54
    bool keep_on_going = true;
55
 
-
 
56
    printf("Connection opened from %p\n", icall->in_phone_hash);
-
 
57
 
55
   
58
    /*
56
    /*
59
     * The connection was opened via the IPC_CONNECT_ME_TO call.
57
     * The connection was opened via the IPC_CONNECT_ME_TO call.
60
     * This call needs to be answered.
58
     * This call needs to be answered.
61
     */
59
     */
62
    ipc_answer_0(iid, EOK);
60
    ipc_answer_0(iid, EOK);
63
 
61
   
64
    /*
62
    /*
65
     * Here we enter the main connection fibril loop.
63
     * Here we enter the main connection fibril loop.
66
     * The logic behind this loop and the protocol is that we'd like to keep
64
     * The logic behind this loop and the protocol is that we'd like to keep
67
     * each connection open until the client hangs up. When the client hangs
65
     * each connection open until the client hangs up. When the client hangs
68
     * up, we will free its VFS state. The act of hanging up the connection
66
     * up, we will free its VFS state. The act of hanging up the connection
Line 70... Line 68...
70
     * distinguish one from the other. On the other hand, the client can
68
     * distinguish one from the other. On the other hand, the client can
71
     * hang up arbitrarily if it has no open files and reestablish the
69
     * hang up arbitrarily if it has no open files and reestablish the
72
     * connection later.
70
     * connection later.
73
     */
71
     */
74
    while (keep_on_going) {
72
    while (keep_on_going) {
75
        ipc_callid_t callid;
-
 
76
        ipc_call_t call;
73
        ipc_call_t call;
77
 
-
 
78
        callid = async_get_call(&call);
74
        ipc_callid_t callid = async_get_call(&call);
79
 
75
       
80
        printf("Received call, method=%d\n", IPC_GET_METHOD(call));
76
        fs_handle_t fs_handle;
-
 
77
        int phone;
81
       
78
       
82
        switch (IPC_GET_METHOD(call)) {
79
        switch (IPC_GET_METHOD(call)) {
83
        case IPC_M_PHONE_HUNGUP:
80
        case IPC_M_PHONE_HUNGUP:
84
            keep_on_going = false;
81
            keep_on_going = false;
85
            break;
82
            break;
-
 
83
        case IPC_M_CONNECT_ME_TO:
-
 
84
            /*
-
 
85
             * Connect the client file system to another one.
-
 
86
             */
-
 
87
            /* FIXME:
-
 
88
             * Prevent ordinary clients from connecting to file
-
 
89
             * system servers directly. This should be solved by
-
 
90
             * applying some security mechanisms.
-
 
91
             */
-
 
92
            fs_handle = IPC_GET_ARG1(call);
-
 
93
            phone = vfs_grab_phone(fs_handle);
-
 
94
            (void) ipc_forward_fast(callid, phone, 0, 0, 0,
-
 
95
                IPC_FF_NONE);
-
 
96
            vfs_release_phone(phone);
-
 
97
            break;
86
        case VFS_REGISTER:
98
        case VFS_REGISTER:
87
            vfs_register(callid, &call);
99
            vfs_register(callid, &call);
-
 
100
            /*
88
            keep_on_going = false;
101
             * Keep the connection open so that a file system can
-
 
102
             * later ask us to connect it to another file system.
-
 
103
             * This is necessary to support non-root mounts.
-
 
104
             */
89
            break;
105
            break;
90
        case VFS_MOUNT:
106
        case VFS_MOUNT:
91
            vfs_mount(callid, &call);
107
            vfs_mount(callid, &call);
92
            break;
108
            break;
93
        case VFS_OPEN:
109
        case VFS_OPEN:
Line 120... Line 136...
120
        default:
136
        default:
121
            ipc_answer_0(callid, ENOTSUP);
137
            ipc_answer_0(callid, ENOTSUP);
122
            break;
138
            break;
123
        }
139
        }
124
    }
140
    }
125
 
-
 
126
    /* TODO: cleanup after the client */
-
 
127
   
141
   
-
 
142
    /* TODO: cleanup after the client */
128
}
143
}
129
 
144
 
130
int main(int argc, char **argv)
145
int main(int argc, char **argv)
131
{
146
{
132
    ipcarg_t phonead;
-
 
133
 
-
 
134
    printf("VFS: HelenOS VFS server\n");
147
    printf(NAME ": HelenOS VFS server\n");
135
 
148
   
136
    /*
149
    /*
137
     * Initialize the list of registered file systems.
150
     * Initialize the list of registered file systems.
138
     */
151
     */
139
    list_initialize(&fs_head);
152
    list_initialize(&fs_head);
140
 
153
   
141
    /*
154
    /*
142
     * Initialize VFS node hash table.
155
     * Initialize VFS node hash table.
143
     */
156
     */
144
    if (!vfs_nodes_init()) {
157
    if (!vfs_nodes_init()) {
145
        printf("Failed to initialize the VFS node hash table.\n");
158
        printf(NAME ": Failed to initialize VFS node hash table\n");
146
        return ENOMEM;
159
        return ENOMEM;
147
    }
160
    }
148
 
161
   
149
    /*
162
    /*
150
     * Allocate and initialize the Path Lookup Buffer.
163
     * Allocate and initialize the Path Lookup Buffer.
151
     */
164
     */
152
    list_initialize(&plb_head);
165
    list_initialize(&plb_head);
153
    plb = as_get_mappable_page(PLB_SIZE);
166
    plb = as_get_mappable_page(PLB_SIZE);
154
    if (!plb) {
167
    if (!plb) {
155
        printf("Cannot allocate a mappable piece of address space\n");
168
        printf(NAME ": Cannot allocate a mappable piece of address space\n");
156
        return ENOMEM;
169
        return ENOMEM;
157
    }
170
    }
-
 
171
   
158
    if (as_area_create(plb, PLB_SIZE, AS_AREA_READ | AS_AREA_WRITE |
172
    if (as_area_create(plb, PLB_SIZE, AS_AREA_READ | AS_AREA_WRITE |
159
        AS_AREA_CACHEABLE) != plb) {
173
        AS_AREA_CACHEABLE) != plb) {
160
        printf("Cannot create address space area.\n");
174
        printf(NAME ": Cannot create address space area\n");
161
        return ENOMEM;
175
        return ENOMEM;
162
    }
176
    }
163
    memset(plb, 0, PLB_SIZE);
177
    memset(plb, 0, PLB_SIZE);
164
   
178
   
165
    /*
179
    /*
166
     * Set a connectio handling function/fibril.
180
     * Set a connectio handling function/fibril.
167
     */
181
     */
168
    async_set_client_connection(vfs_connection);
182
    async_set_client_connection(vfs_connection);
169
 
183
   
170
    /*
184
    /*
171
     * Register at the naming service.
185
     * Register at the naming service.
172
     */
186
     */
-
 
187
    ipcarg_t phonead;
173
    ipc_connect_to_me(PHONE_NS, SERVICE_VFS, 0, 0, &phonead);
188
    ipc_connect_to_me(PHONE_NS, SERVICE_VFS, 0, 0, &phonead);
174
 
189
   
175
    /*
190
    /*
176
     * Start accepting connections.
191
     * Start accepting connections.
177
     */
192
     */
-
 
193
    printf(NAME ": Accepting connections\n");
178
    async_manager();
194
    async_manager();
179
    return 0;
195
    return 0;
180
}
196
}
181
 
197
 
182
/**
198
/**
183
 * @}
199
 * @}
184
 */
200
 */