Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    refcebe1 rb72efe8  
    104104}
    105105
     106static char tmpfs_plb_get_char(unsigned pos)
     107{
     108        return tmpfs_reg.plb_ro[pos % PLB_SIZE];
     109}
     110
    106111static bool tmpfs_is_directory(fs_node_t *fn)
    107112{
     
    134139        .size_get = tmpfs_size_get,
    135140        .lnkcnt_get = tmpfs_lnkcnt_get,
     141        .plb_get_char = tmpfs_plb_get_char,
    136142        .is_directory = tmpfs_is_directory,
    137143        .is_file = tmpfs_is_file,
     
    427433}
    428434
    429 /*
    430  * Implementation of the VFS_OUT interface.
    431  */
    432 
    433 static int
    434 tmpfs_mounted(devmap_handle_t devmap_handle, const char *opts,
    435     fs_index_t *index, aoff64_t *size, unsigned *lnkcnt)
    436 {
     435void tmpfs_mounted(ipc_callid_t rid, ipc_call_t *request)
     436{
     437        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
    437438        fs_node_t *rootfn;
    438439        int rc;
    439440       
     441        /* Accept the mount options. */
     442        char *opts;
     443        rc = async_data_write_accept((void **) &opts, true, 0, 0, 0, NULL);
     444        if (rc != EOK) {
     445                async_answer_0(rid, rc);
     446                return;
     447        }
     448
    440449        /* Check if this device is not already mounted. */
    441450        rc = tmpfs_root_get(&rootfn, devmap_handle);
    442451        if ((rc == EOK) && (rootfn)) {
    443452                (void) tmpfs_node_put(rootfn);
    444                 return EEXIST;
     453                free(opts);
     454                async_answer_0(rid, EEXIST);
     455                return;
    445456        }
    446457
    447458        /* Initialize TMPFS instance. */
    448         if (!tmpfs_instance_init(devmap_handle))
    449                 return ENOMEM;
     459        if (!tmpfs_instance_init(devmap_handle)) {
     460                free(opts);
     461                async_answer_0(rid, ENOMEM);
     462                return;
     463        }
    450464
    451465        rc = tmpfs_root_get(&rootfn, devmap_handle);
     
    453467        tmpfs_node_t *rootp = TMPFS_NODE(rootfn);
    454468        if (str_cmp(opts, "restore") == 0) {
    455                 if (!tmpfs_restore(devmap_handle))
    456                         return ELIMIT;
    457         }
    458 
    459         *index = rootp->index;
    460         *size = rootp->size;
    461         *lnkcnt = rootp->lnkcnt;
    462 
    463         return EOK;
    464 }
    465 
    466 static int tmpfs_unmounted(devmap_handle_t devmap_handle)
    467 {
     469                if (tmpfs_restore(devmap_handle))
     470                        async_answer_3(rid, EOK, rootp->index, rootp->size,
     471                            rootp->lnkcnt);
     472                else
     473                        async_answer_0(rid, ELIMIT);
     474        } else {
     475                async_answer_3(rid, EOK, rootp->index, rootp->size,
     476                    rootp->lnkcnt);
     477        }
     478        free(opts);
     479}
     480
     481void tmpfs_mount(ipc_callid_t rid, ipc_call_t *request)
     482{
     483        libfs_mount(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     484}
     485
     486void tmpfs_unmounted(ipc_callid_t rid, ipc_call_t *request)
     487{
     488        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     489
    468490        tmpfs_instance_done(devmap_handle);
    469         return EOK;
    470 }
    471 
    472 static int tmpfs_read(devmap_handle_t devmap_handle, fs_index_t index, aoff64_t pos,
    473     size_t *rbytes)
    474 {
     491        async_answer_0(rid, EOK);
     492}
     493
     494void tmpfs_unmount(ipc_callid_t rid, ipc_call_t *request)
     495{
     496        libfs_unmount(&tmpfs_libfs_ops, rid, request);
     497}
     498
     499void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request)
     500{
     501        libfs_lookup(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     502}
     503
     504void tmpfs_read(ipc_callid_t rid, ipc_call_t *request)
     505{
     506        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     507        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     508        aoff64_t pos =
     509            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     510       
    475511        /*
    476512         * Lookup the respective TMPFS node.
     
    482518        };
    483519        hlp = hash_table_find(&nodes, key);
    484         if (!hlp)
    485                 return ENOENT;
     520        if (!hlp) {
     521                async_answer_0(rid, ENOENT);
     522                return;
     523        }
    486524        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    487525            nh_link);
     
    494532        if (!async_data_read_receive(&callid, &size)) {
    495533                async_answer_0(callid, EINVAL);
    496                 return EINVAL;
     534                async_answer_0(rid, EINVAL);
     535                return;
    497536        }
    498537
     
    517556                if (lnk == NULL) {
    518557                        async_answer_0(callid, ENOENT);
    519                         return ENOENT;
     558                        async_answer_1(rid, ENOENT, 0);
     559                        return;
    520560                }
    521561
     
    527567        }
    528568
    529         *rbytes = bytes;
    530         return EOK;
    531 }
    532 
    533 static int
    534 tmpfs_write(devmap_handle_t devmap_handle, fs_index_t index, aoff64_t pos,
    535     size_t *wbytes, aoff64_t *nsize)
    536 {
     569        /*
     570         * Answer the VFS_READ call.
     571         */
     572        async_answer_1(rid, EOK, bytes);
     573}
     574
     575void tmpfs_write(ipc_callid_t rid, ipc_call_t *request)
     576{
     577        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     578        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     579        aoff64_t pos =
     580            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     581       
    537582        /*
    538583         * Lookup the respective TMPFS node.
     
    544589        };
    545590        hlp = hash_table_find(&nodes, key);
    546         if (!hlp)
    547                 return ENOENT;
     591        if (!hlp) {
     592                async_answer_0(rid, ENOENT);
     593                return;
     594        }
    548595        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    549596            nh_link);
     
    556603        if (!async_data_write_receive(&callid, &size)) {
    557604                async_answer_0(callid, EINVAL);
    558                 return EINVAL;
     605                async_answer_0(rid, EINVAL);
     606                return;
    559607        }
    560608
     
    564612        if (pos + size <= nodep->size) {
    565613                /* The file size is not changing. */
    566                 (void) async_data_write_finalize(callid, nodep->data + pos,
    567                     size);
    568                 goto out;
     614                (void) async_data_write_finalize(callid, nodep->data + pos, size);
     615                async_answer_2(rid, EOK, size, nodep->size);
     616                return;
    569617        }
    570618        size_t delta = (pos + size) - nodep->size;
     
    579627        if (!newdata) {
    580628                async_answer_0(callid, ENOMEM);
    581                 size = 0;
    582                 goto out;
     629                async_answer_2(rid, EOK, 0, nodep->size);
     630                return;
    583631        }
    584632        /* Clear any newly allocated memory in order to emulate gaps. */
     
    587635        nodep->data = newdata;
    588636        (void) async_data_write_finalize(callid, nodep->data + pos, size);
    589 
    590 out:
    591         *wbytes = size;
    592         *nsize = nodep->size;
    593         return EOK;
    594 }
    595 
    596 static int tmpfs_truncate(devmap_handle_t devmap_handle, fs_index_t index,
    597     aoff64_t size)
    598 {
     637        async_answer_2(rid, EOK, size, nodep->size);
     638}
     639
     640void tmpfs_truncate(ipc_callid_t rid, ipc_call_t *request)
     641{
     642        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     643        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     644        aoff64_t size =
     645            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     646       
    599647        /*
    600648         * Lookup the respective TMPFS node.
     
    605653        };
    606654        link_t *hlp = hash_table_find(&nodes, key);
    607         if (!hlp)
    608                 return ENOENT;
    609         tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t, nh_link);
    610        
    611         if (size == nodep->size)
    612                 return EOK;
    613        
    614         if (size > SIZE_MAX)
    615                 return ENOMEM;
     655        if (!hlp) {
     656                async_answer_0(rid, ENOENT);
     657                return;
     658        }
     659        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
     660            nh_link);
     661       
     662        if (size == nodep->size) {
     663                async_answer_0(rid, EOK);
     664                return;
     665        }
     666       
     667        if (size > SIZE_MAX) {
     668                async_answer_0(rid, ENOMEM);
     669                return;
     670        }
    616671       
    617672        void *newdata = realloc(nodep->data, size);
    618         if (!newdata)
    619                 return ENOMEM;
     673        if (!newdata) {
     674                async_answer_0(rid, ENOMEM);
     675                return;
     676        }
    620677       
    621678        if (size > nodep->size) {
     
    626683        nodep->size = size;
    627684        nodep->data = newdata;
    628         return EOK;
    629 }
    630 
    631 static int tmpfs_close(devmap_handle_t devmap_handle, fs_index_t index)
    632 {
    633         return EOK;
    634 }
    635 
    636 static int tmpfs_destroy(devmap_handle_t devmap_handle, fs_index_t index)
    637 {
     685        async_answer_0(rid, EOK);
     686}
     687
     688void tmpfs_close(ipc_callid_t rid, ipc_call_t *request)
     689{
     690        async_answer_0(rid, EOK);
     691}
     692
     693void tmpfs_destroy(ipc_callid_t rid, ipc_call_t *request)
     694{
     695        devmap_handle_t devmap_handle = (devmap_handle_t)IPC_GET_ARG1(*request);
     696        fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
     697        int rc;
     698
    638699        link_t *hlp;
    639700        unsigned long key[] = {
     
    642703        };
    643704        hlp = hash_table_find(&nodes, key);
    644         if (!hlp)
    645                 return ENOENT;
     705        if (!hlp) {
     706                async_answer_0(rid, ENOENT);
     707                return;
     708        }
    646709        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    647710            nh_link);
    648         return tmpfs_destroy_node(FS_NODE(nodep));
    649 }
    650 
    651 static int tmpfs_sync(devmap_handle_t devmap_handle, fs_index_t index)
     711        rc = tmpfs_destroy_node(FS_NODE(nodep));
     712        async_answer_0(rid, rc);
     713}
     714
     715void tmpfs_open_node(ipc_callid_t rid, ipc_call_t *request)
     716{
     717        libfs_open_node(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     718}
     719
     720void tmpfs_stat(ipc_callid_t rid, ipc_call_t *request)
     721{
     722        libfs_stat(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     723}
     724
     725void tmpfs_sync(ipc_callid_t rid, ipc_call_t *request)
    652726{
    653727        /*
     
    655729         * thus the sync operation is a no-op.
    656730         */
    657         return EOK;
    658 }
    659 
    660 vfs_out_ops_t tmpfs_ops = {
    661         .mounted = tmpfs_mounted,
    662         .unmounted = tmpfs_unmounted,
    663         .read = tmpfs_read,
    664         .write = tmpfs_write,
    665         .truncate = tmpfs_truncate,
    666         .close = tmpfs_close,
    667         .destroy = tmpfs_destroy,
    668         .sync = tmpfs_sync,
    669 };
     731        async_answer_0(rid, EOK);
     732}
    670733
    671734/**
    672735 * @}
    673736 */
    674 
Note: See TracChangeset for help on using the changeset viewer.