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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b1834a01 was b1834a01, checked in by Jakub Jermar <jakub@…>, 7 years ago

Categorize the remaining orphan doxygroups

  • Property mode set to 100644
File size: 4.0 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
[b1834a01]29/** @addtogroup vfs
[0f78e74]30 * @{
[8dc72b64]31 */
[0f78e74]32
33/**
[8dc72b64]34 * @file vfs.c
35 * @brief VFS service for HelenOS.
[0f78e74]36 */
37
[e2ab36f1]38#include <vfs/vfs.h>
[a481d81]39#include <stdlib.h>
[c952465d]40#include <ipc/services.h>
[a481d81]41#include <abi/ipc/methods.h>
42#include <libarch/config.h>
[79ae36dd]43#include <ns.h>
[c952465d]44#include <async.h>
45#include <errno.h>
[c1694b6b]46#include <str_error.h>
[47a776f9]47#include <stdio.h>
[3e6a98c5]48#include <stdbool.h>
[19f857a]49#include <str.h>
[bcf23cf]50#include <as.h>
[e2ab36f1]51#include <macros.h>
[c952465d]52#include "vfs.h"
53
[007e6efa]54#define NAME "vfs"
[6c89f20]55
[984a9ba]56static void vfs_pager(ipc_call_t *icall, void *arg)
[519a97d]57{
[984a9ba]58 async_answer_0(icall, EOK);
[a481d81]59
60 while (true) {
61 ipc_call_t call;
[984a9ba]62 async_get_call(&call);
[a35b458]63
[a481d81]64 if (!IPC_GET_IMETHOD(call))
65 break;
[a35b458]66
[a481d81]67 switch (IPC_GET_IMETHOD(call)) {
68 case IPC_M_PAGE_IN:
[984a9ba]69 vfs_page_in(&call);
[a481d81]70 break;
71 default:
[984a9ba]72 async_answer_0(&call, ENOTSUP);
[a481d81]73 break;
74 }
75 }
[519a97d]76}
77
[01c3bb4]78static void notification_handler(ipc_call_t *call, void *arg)
[2bc13887]79{
[8820544]80 if (IPC_GET_ARG1(*call) == VFS_PASS_HANDLE)
[354b642]81 vfs_op_pass_handle(
[8820544]82 (task_id_t) MERGE_LOUP32(IPC_GET_ARG4(*call),
83 IPC_GET_ARG5(*call)), call->in_task_id,
84 (int) IPC_GET_ARG2(*call));
[2bc13887]85}
86
[0f78e74]87int main(int argc, char **argv)
88{
[a47f522]89 printf("%s: HelenOS VFS server\n", NAME);
[a35b458]90
[b818cff]91 /*
92 * Initialize VFS node hash table.
93 */
94 if (!vfs_nodes_init()) {
[a47f522]95 printf("%s: Failed to initialize VFS node hash table\n",
96 NAME);
[b818cff]97 return ENOMEM;
98 }
[a35b458]99
[bcf23cf]100 /*
101 * Allocate and initialize the Path Lookup Buffer.
102 */
[faba839]103 plb = as_area_create(AS_AREA_ANY, PLB_SIZE,
[6aeca0d]104 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE, AS_AREA_UNPAGED);
[faba839]105 if (plb == AS_MAP_FAILED) {
[a47f522]106 printf("%s: Cannot create address space area\n", NAME);
[37e7dc54]107 return ENOMEM;
108 }
109 memset(plb, 0, PLB_SIZE);
[a35b458]110
[b75e929]111 /*
112 * Set client data constructor and destructor.
113 */
114 async_set_client_data_constructor(vfs_client_data_create);
115 async_set_client_data_destructor(vfs_client_data_destroy);
116
[2bc13887]117 /*
[8820544]118 * Subscribe to notifications.
[2bc13887]119 */
[8820544]120 async_event_task_subscribe(EVENT_TASK_STATE_CHANGE, notification_handler,
121 NULL);
[a35b458]122
[bcf23cf]123 /*
124 * Register at the naming service.
125 */
[9b1baac]126 errno_t rc = service_register(SERVICE_VFS, INTERFACE_PAGER, vfs_pager, NULL);
127 if (rc != EOK) {
128 printf("%s: Cannot register VFS pager port: %s\n", NAME, str_error(rc));
129 return rc;
130 }
131
132 rc = service_register(SERVICE_VFS, INTERFACE_VFS, vfs_connection, NULL);
133 if (rc != EOK) {
134 printf("%s: Cannot register VFS file system port: %s\n", NAME, str_error(rc));
135 return rc;
136 }
137
138 rc = service_register(SERVICE_VFS, INTERFACE_VFS_DRIVER, vfs_connection, NULL);
[a47f522]139 if (rc != EOK) {
[9b1baac]140 printf("%s: Cannot register VFS driver port: %s\n", NAME, str_error(rc));
[a47f522]141 return rc;
[007e6efa]142 }
[a35b458]143
[bcf23cf]144 /*
145 * Start accepting connections.
146 */
[a47f522]147 printf("%s: Accepting connections\n", NAME);
[c952465d]148 async_manager();
[0f78e74]149 return 0;
150}
151
152/**
153 * @}
[8dc72b64]154 */
Note: See TracBrowser for help on using the repository browser.