source: mainline/uspace/srv/vfs/vfs.c@ d2c1fd5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d2c1fd5 was 6c89f20d, checked in by Martin Decky <martin@…>, 17 years ago

disable extensive debugging output

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[0f78e74]1/*
[0ee4322]2 * Copyright (c) 2008 Jakub Jermar
[0f78e74]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
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
15 * derived from this software without specific prior written permission.
16 *
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
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
31 */
32
33/**
34 * @file vfs.c
[bcf23cf]35 * @brief VFS service for HelenOS.
[0f78e74]36 */
37
[c952465d]38#include <ipc/ipc.h>
39#include <ipc/services.h>
40#include <async.h>
41#include <errno.h>
[47a776f9]42#include <stdio.h>
[d79dcdb]43#include <bool.h>
[bcf23cf]44#include <string.h>
45#include <as.h>
[2b20947]46#include <libadt/list.h>
[7313e7a]47#include <atomic.h>
[c952465d]48#include "vfs.h"
49
[6c89f20d]50#define NAME "vfs"
51
[47a776f9]52#define dprintf(...) printf(__VA_ARGS__)
53
[c952465d]54static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall)
55{
[d79dcdb]56 bool keep_on_going = 1;
[c952465d]57
58 /*
59 * The connection was opened via the IPC_CONNECT_ME_TO call.
60 * This call needs to be answered.
61 */
[b74959bd]62 ipc_answer_0(iid, EOK);
[c952465d]63
64 /*
[d79dcdb]65 * Here we enter the main connection fibril loop.
66 * The logic behind this loop and the protocol is that we'd like to keep
[5b890cfd]67 * 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
69 * by the client is equivalent to client termination because we cannot
70 * 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
72 * connection later.
[c952465d]73 */
[d79dcdb]74 while (keep_on_going) {
75 ipc_callid_t callid;
76 ipc_call_t call;
77
78 callid = async_get_call(&call);
[47a776f9]79
[d79dcdb]80 switch (IPC_GET_METHOD(call)) {
81 case IPC_M_PHONE_HUNGUP:
82 keep_on_going = false;
83 break;
84 case VFS_REGISTER:
85 vfs_register(callid, &call);
[18525c5]86 keep_on_going = false;
[d79dcdb]87 break;
88 case VFS_MOUNT:
[828d215]89 vfs_mount(callid, &call);
90 break;
[d79dcdb]91 case VFS_OPEN:
[828d215]92 vfs_open(callid, &call);
93 break;
[e704503]94 case VFS_CLOSE:
95 vfs_close(callid, &call);
96 break;
[b3cd9eb]97 case VFS_READ:
98 vfs_read(callid, &call);
99 break;
[ee1b8ca]100 case VFS_WRITE:
101 vfs_write(callid, &call);
102 break;
[222e57c]103 case VFS_SEEK:
104 vfs_seek(callid, &call);
105 break;
[cad9c72]106 case VFS_TRUNCATE:
[0ee4322]107 vfs_truncate(callid, &call);
108 break;
[72bde81]109 case VFS_MKDIR:
110 vfs_mkdir(callid, &call);
111 break;
[f15cf1a6]112 case VFS_UNLINK:
113 vfs_unlink(callid, &call);
114 break;
[a8e9ab8d]115 case VFS_RENAME:
116 vfs_rename(callid, &call);
117 break;
[d79dcdb]118 default:
[b74959bd]119 ipc_answer_0(callid, ENOTSUP);
[d79dcdb]120 break;
121 }
[c952465d]122 }
[d79dcdb]123
124 /* TODO: cleanup after the client */
125
[c952465d]126}
127
[0f78e74]128int main(int argc, char **argv)
129{
[c952465d]130 ipcarg_t phonead;
131
[6c89f20d]132 printf(NAME ": HelenOS VFS server\n");
[47a776f9]133
[bcf23cf]134 /*
135 * Initialize the list of registered file systems.
136 */
[2b20947]137 list_initialize(&fs_head);
[bcf23cf]138
[b818cff]139 /*
140 * Initialize VFS node hash table.
141 */
142 if (!vfs_nodes_init()) {
[6c89f20d]143 printf(NAME ": Failed to initialize VFS node hash table\n");
[b818cff]144 return ENOMEM;
145 }
146
[bcf23cf]147 /*
148 * Allocate and initialize the Path Lookup Buffer.
149 */
150 list_initialize(&plb_head);
151 plb = as_get_mappable_page(PLB_SIZE);
[37e7dc54]152 if (!plb) {
[6c89f20d]153 printf(NAME ": Cannot allocate a mappable piece of address space\n");
[37e7dc54]154 return ENOMEM;
155 }
156 if (as_area_create(plb, PLB_SIZE, AS_AREA_READ | AS_AREA_WRITE |
157 AS_AREA_CACHEABLE) != plb) {
[6c89f20d]158 printf(NAME ": Cannot create address space area\n");
[37e7dc54]159 return ENOMEM;
160 }
161 memset(plb, 0, PLB_SIZE);
[bcf23cf]162
163 /*
164 * Set a connectio handling function/fibril.
165 */
[c952465d]166 async_set_client_connection(vfs_connection);
[bcf23cf]167
168 /*
169 * Register at the naming service.
170 */
[38c706cc]171 ipc_connect_to_me(PHONE_NS, SERVICE_VFS, 0, 0, &phonead);
[bcf23cf]172
173 /*
174 * Start accepting connections.
175 */
[6c89f20d]176 printf(NAME ": Accepting connections\n");
[c952465d]177 async_manager();
[0f78e74]178 return 0;
179}
180
181/**
182 * @}
183 */
Note: See TracBrowser for help on using the repository browser.