Ignore:
File:
1 edited

Legend:

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

    rb33870b rffa2c8ef  
    6969/* Forward declarations of static functions. */
    7070static int tmpfs_match(fs_node_t **, fs_node_t *, const char *);
    71 static int tmpfs_node_get(fs_node_t **, service_id_t, fs_index_t);
     71static int tmpfs_node_get(fs_node_t **, devmap_handle_t, fs_index_t);
    7272static int tmpfs_node_open(fs_node_t *);
    7373static int tmpfs_node_put(fs_node_t *);
    74 static int tmpfs_create_node(fs_node_t **, service_id_t, int);
     74static int tmpfs_create_node(fs_node_t **, devmap_handle_t, int);
    7575static int tmpfs_destroy_node(fs_node_t *);
    7676static int tmpfs_link_node(fs_node_t *, fs_node_t *, const char *);
     
    7878
    7979/* Implementation of helper functions. */
    80 static int tmpfs_root_get(fs_node_t **rfn, service_id_t service_id)
    81 {
    82         return tmpfs_node_get(rfn, service_id, TMPFS_SOME_ROOT);
     80static int tmpfs_root_get(fs_node_t **rfn, devmap_handle_t devmap_handle)
     81{
     82        return tmpfs_node_get(rfn, devmap_handle, TMPFS_SOME_ROOT);
    8383}
    8484
    8585static int tmpfs_has_children(bool *has_children, fs_node_t *fn)
    8686{
    87         *has_children = !list_empty(&TMPFS_NODE(fn)->cs_list);
     87        *has_children = !list_empty(&TMPFS_NODE(fn)->cs_head);
    8888        return EOK;
    8989}
     
    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{
     
    114119}
    115120
    116 static service_id_t tmpfs_service_get(fs_node_t *fn)
     121static devmap_handle_t tmpfs_device_get(fs_node_t *fn)
    117122{
    118123        return 0;
     
    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,
    138         .service_get = tmpfs_service_get
     144        .device_get = tmpfs_device_get
    139145};
    140146
     
    158164        switch (keys) {
    159165        case 1:
    160                 return (nodep->service_id == key[NODES_KEY_DEV]);
     166                return (nodep->devmap_handle == key[NODES_KEY_DEV]);
    161167        case 2:
    162                 return ((nodep->service_id == key[NODES_KEY_DEV]) &&
     168                return ((nodep->devmap_handle == key[NODES_KEY_DEV]) &&
    163169                    (nodep->index == key[NODES_KEY_INDEX]));
    164170        default:
     
    174180            nh_link);
    175181
    176         while (!list_empty(&nodep->cs_list)) {
    177                 tmpfs_dentry_t *dentryp = list_get_instance(
    178                     list_first(&nodep->cs_list), tmpfs_dentry_t, link);
     182        while (!list_empty(&nodep->cs_head)) {
     183                tmpfs_dentry_t *dentryp = list_get_instance(nodep->cs_head.next,
     184                    tmpfs_dentry_t, link);
    179185
    180186                assert(nodep->type == TMPFS_DIRECTORY);
     
    202208        nodep->bp = NULL;
    203209        nodep->index = 0;
    204         nodep->service_id = 0;
     210        nodep->devmap_handle = 0;
    205211        nodep->type = TMPFS_NONE;
    206212        nodep->lnkcnt = 0;
     
    208214        nodep->data = NULL;
    209215        link_initialize(&nodep->nh_link);
    210         list_initialize(&nodep->cs_list);
     216        list_initialize(&nodep->cs_head);
    211217}
    212218
     
    226232}
    227233
    228 static bool tmpfs_instance_init(service_id_t service_id)
     234static bool tmpfs_instance_init(devmap_handle_t devmap_handle)
    229235{
    230236        fs_node_t *rfn;
    231237        int rc;
    232238       
    233         rc = tmpfs_create_node(&rfn, service_id, L_DIRECTORY);
     239        rc = tmpfs_create_node(&rfn, devmap_handle, L_DIRECTORY);
    234240        if (rc != EOK || !rfn)
    235241                return false;
     
    238244}
    239245
    240 static void tmpfs_instance_done(service_id_t service_id)
     246static void tmpfs_instance_done(devmap_handle_t devmap_handle)
    241247{
    242248        unsigned long key[] = {
    243                 [NODES_KEY_DEV] = service_id
     249                [NODES_KEY_DEV] = devmap_handle
    244250        };
    245251        /*
     
    256262{
    257263        tmpfs_node_t *parentp = TMPFS_NODE(pfn);
    258 
    259         list_foreach(parentp->cs_list, lnk) {
     264        link_t *lnk;
     265
     266        for (lnk = parentp->cs_head.next; lnk != &parentp->cs_head;
     267            lnk = lnk->next) {
    260268                tmpfs_dentry_t *dentryp;
    261269                dentryp = list_get_instance(lnk, tmpfs_dentry_t, link);
     
    270278}
    271279
    272 int tmpfs_node_get(fs_node_t **rfn, service_id_t service_id, fs_index_t index)
     280int tmpfs_node_get(fs_node_t **rfn, devmap_handle_t devmap_handle, fs_index_t index)
    273281{
    274282        unsigned long key[] = {
    275                 [NODES_KEY_DEV] = service_id,
     283                [NODES_KEY_DEV] = devmap_handle,
    276284                [NODES_KEY_INDEX] = index
    277285        };
     
    299307}
    300308
    301 int tmpfs_create_node(fs_node_t **rfn, service_id_t service_id, int lflag)
     309int tmpfs_create_node(fs_node_t **rfn, devmap_handle_t devmap_handle, int lflag)
    302310{
    303311        fs_node_t *rootfn;
     
    318326        nodep->bp->data = nodep;        /* link the FS and TMPFS nodes */
    319327
    320         rc = tmpfs_root_get(&rootfn, service_id);
     328        rc = tmpfs_root_get(&rootfn, devmap_handle);
    321329        assert(rc == EOK);
    322330        if (!rootfn)
     
    324332        else
    325333                nodep->index = tmpfs_next_index++;
    326         nodep->service_id = service_id;
     334        nodep->devmap_handle = devmap_handle;
    327335        if (lflag & L_DIRECTORY)
    328336                nodep->type = TMPFS_DIRECTORY;
     
    332340        /* Insert the new node into the nodes hash table. */
    333341        unsigned long key[] = {
    334                 [NODES_KEY_DEV] = nodep->service_id,
     342                [NODES_KEY_DEV] = nodep->devmap_handle,
    335343                [NODES_KEY_INDEX] = nodep->index
    336344        };
     
    345353       
    346354        assert(!nodep->lnkcnt);
    347         assert(list_empty(&nodep->cs_list));
     355        assert(list_empty(&nodep->cs_head));
    348356
    349357        unsigned long key[] = {
    350                 [NODES_KEY_DEV] = nodep->service_id,
     358                [NODES_KEY_DEV] = nodep->devmap_handle,
    351359                [NODES_KEY_INDEX] = nodep->index
    352360        };
     
    365373        tmpfs_node_t *childp = TMPFS_NODE(cfn);
    366374        tmpfs_dentry_t *dentryp;
     375        link_t *lnk;
    367376
    368377        assert(parentp->type == TMPFS_DIRECTORY);
    369378
    370379        /* Check for duplicit entries. */
    371         list_foreach(parentp->cs_list, lnk) {
     380        for (lnk = parentp->cs_head.next; lnk != &parentp->cs_head;
     381            lnk = lnk->next) {
    372382                dentryp = list_get_instance(lnk, tmpfs_dentry_t, link);
    373383                if (!str_cmp(dentryp->name, nm))
     
    391401        dentryp->node = childp;
    392402        childp->lnkcnt++;
    393         list_append(&dentryp->link, &parentp->cs_list);
     403        list_append(&dentryp->link, &parentp->cs_head);
    394404
    395405        return EOK;
     
    401411        tmpfs_node_t *childp = NULL;
    402412        tmpfs_dentry_t *dentryp;
     413        link_t *lnk;
    403414
    404415        if (!parentp)
    405416                return EBUSY;
    406417       
    407         list_foreach(parentp->cs_list, lnk) {
     418        for (lnk = parentp->cs_head.next; lnk != &parentp->cs_head;
     419            lnk = lnk->next) {
    408420                dentryp = list_get_instance(lnk, tmpfs_dentry_t, link);
    409421                if (!str_cmp(dentryp->name, nm)) {
     
    411423                        assert(FS_NODE(childp) == cfn);
    412424                        break;
    413                 }
     425                }       
    414426        }
    415427
     
    417429                return ENOENT;
    418430               
    419         if ((childp->lnkcnt == 1) && !list_empty(&childp->cs_list))
     431        if ((childp->lnkcnt == 1) && !list_empty(&childp->cs_head))
    420432                return ENOTEMPTY;
    421433
     
    427439}
    428440
    429 /*
    430  * Implementation of the VFS_OUT interface.
    431  */
    432 
    433 static int
    434 tmpfs_mounted(service_id_t service_id, const char *opts,
    435     fs_index_t *index, aoff64_t *size, unsigned *lnkcnt)
    436 {
     441void tmpfs_mounted(ipc_callid_t rid, ipc_call_t *request)
     442{
     443        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
    437444        fs_node_t *rootfn;
    438445        int rc;
    439446       
     447        /* Accept the mount options. */
     448        char *opts;
     449        rc = async_data_write_accept((void **) &opts, true, 0, 0, 0, NULL);
     450        if (rc != EOK) {
     451                async_answer_0(rid, rc);
     452                return;
     453        }
     454
    440455        /* Check if this device is not already mounted. */
    441         rc = tmpfs_root_get(&rootfn, service_id);
     456        rc = tmpfs_root_get(&rootfn, devmap_handle);
    442457        if ((rc == EOK) && (rootfn)) {
    443458                (void) tmpfs_node_put(rootfn);
    444                 return EEXIST;
     459                free(opts);
     460                async_answer_0(rid, EEXIST);
     461                return;
    445462        }
    446463
    447464        /* Initialize TMPFS instance. */
    448         if (!tmpfs_instance_init(service_id))
    449                 return ENOMEM;
    450 
    451         rc = tmpfs_root_get(&rootfn, service_id);
     465        if (!tmpfs_instance_init(devmap_handle)) {
     466                free(opts);
     467                async_answer_0(rid, ENOMEM);
     468                return;
     469        }
     470
     471        rc = tmpfs_root_get(&rootfn, devmap_handle);
    452472        assert(rc == EOK);
    453473        tmpfs_node_t *rootp = TMPFS_NODE(rootfn);
    454474        if (str_cmp(opts, "restore") == 0) {
    455                 if (!tmpfs_restore(service_id))
    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(service_id_t service_id)
    467 {
    468         tmpfs_instance_done(service_id);
    469         return EOK;
    470 }
    471 
    472 static int tmpfs_read(service_id_t service_id, fs_index_t index, aoff64_t pos,
    473     size_t *rbytes)
    474 {
     475                if (tmpfs_restore(devmap_handle))
     476                        async_answer_3(rid, EOK, rootp->index, rootp->size,
     477                            rootp->lnkcnt);
     478                else
     479                        async_answer_0(rid, ELIMIT);
     480        } else {
     481                async_answer_3(rid, EOK, rootp->index, rootp->size,
     482                    rootp->lnkcnt);
     483        }
     484        free(opts);
     485}
     486
     487void tmpfs_mount(ipc_callid_t rid, ipc_call_t *request)
     488{
     489        libfs_mount(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     490}
     491
     492void tmpfs_unmounted(ipc_callid_t rid, ipc_call_t *request)
     493{
     494        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     495
     496        tmpfs_instance_done(devmap_handle);
     497        async_answer_0(rid, EOK);
     498}
     499
     500void tmpfs_unmount(ipc_callid_t rid, ipc_call_t *request)
     501{
     502        libfs_unmount(&tmpfs_libfs_ops, rid, request);
     503}
     504
     505void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request)
     506{
     507        libfs_lookup(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     508}
     509
     510void tmpfs_read(ipc_callid_t rid, ipc_call_t *request)
     511{
     512        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     513        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     514        aoff64_t pos =
     515            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     516       
    475517        /*
    476518         * Lookup the respective TMPFS node.
     
    478520        link_t *hlp;
    479521        unsigned long key[] = {
    480                 [NODES_KEY_DEV] = service_id,
     522                [NODES_KEY_DEV] = devmap_handle,
    481523                [NODES_KEY_INDEX] = index
    482524        };
    483525        hlp = hash_table_find(&nodes, key);
    484         if (!hlp)
    485                 return ENOENT;
     526        if (!hlp) {
     527                async_answer_0(rid, ENOENT);
     528                return;
     529        }
    486530        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    487531            nh_link);
     
    494538        if (!async_data_read_receive(&callid, &size)) {
    495539                async_answer_0(callid, EINVAL);
    496                 return EINVAL;
     540                async_answer_0(rid, EINVAL);
     541                return;
    497542        }
    498543
     
    505550                tmpfs_dentry_t *dentryp;
    506551                link_t *lnk;
     552                aoff64_t i;
    507553               
    508554                assert(nodep->type == TMPFS_DIRECTORY);
     
    513559                 * hash table.
    514560                 */
    515                 lnk = list_nth(&nodep->cs_list, pos);
    516                
    517                 if (lnk == NULL) {
     561                for (i = 0, lnk = nodep->cs_head.next;
     562                    (i < pos) && (lnk != &nodep->cs_head);
     563                    i++, lnk = lnk->next)
     564                        ;
     565
     566                if (lnk == &nodep->cs_head) {
    518567                        async_answer_0(callid, ENOENT);
    519                         return ENOENT;
     568                        async_answer_1(rid, ENOENT, 0);
     569                        return;
    520570                }
    521571
     
    527577        }
    528578
    529         *rbytes = bytes;
    530         return EOK;
    531 }
    532 
    533 static int
    534 tmpfs_write(service_id_t service_id, fs_index_t index, aoff64_t pos,
    535     size_t *wbytes, aoff64_t *nsize)
    536 {
     579        /*
     580         * Answer the VFS_READ call.
     581         */
     582        async_answer_1(rid, EOK, bytes);
     583}
     584
     585void tmpfs_write(ipc_callid_t rid, ipc_call_t *request)
     586{
     587        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     588        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     589        aoff64_t pos =
     590            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     591       
    537592        /*
    538593         * Lookup the respective TMPFS node.
     
    540595        link_t *hlp;
    541596        unsigned long key[] = {
    542                 [NODES_KEY_DEV] = service_id,
     597                [NODES_KEY_DEV] = devmap_handle,
    543598                [NODES_KEY_INDEX] = index
    544599        };
    545600        hlp = hash_table_find(&nodes, key);
    546         if (!hlp)
    547                 return ENOENT;
     601        if (!hlp) {
     602                async_answer_0(rid, ENOENT);
     603                return;
     604        }
    548605        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    549606            nh_link);
     
    556613        if (!async_data_write_receive(&callid, &size)) {
    557614                async_answer_0(callid, EINVAL);
    558                 return EINVAL;
     615                async_answer_0(rid, EINVAL);
     616                return;
    559617        }
    560618
     
    564622        if (pos + size <= nodep->size) {
    565623                /* The file size is not changing. */
    566                 (void) async_data_write_finalize(callid, nodep->data + pos,
    567                     size);
    568                 goto out;
     624                (void) async_data_write_finalize(callid, nodep->data + pos, size);
     625                async_answer_2(rid, EOK, size, nodep->size);
     626                return;
    569627        }
    570628        size_t delta = (pos + size) - nodep->size;
     
    579637        if (!newdata) {
    580638                async_answer_0(callid, ENOMEM);
    581                 size = 0;
    582                 goto out;
     639                async_answer_2(rid, EOK, 0, nodep->size);
     640                return;
    583641        }
    584642        /* Clear any newly allocated memory in order to emulate gaps. */
     
    587645        nodep->data = newdata;
    588646        (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(service_id_t service_id, fs_index_t index,
    597     aoff64_t size)
    598 {
     647        async_answer_2(rid, EOK, size, nodep->size);
     648}
     649
     650void tmpfs_truncate(ipc_callid_t rid, ipc_call_t *request)
     651{
     652        devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
     653        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     654        aoff64_t size =
     655            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     656       
    599657        /*
    600658         * Lookup the respective TMPFS node.
    601659         */
    602660        unsigned long key[] = {
    603                 [NODES_KEY_DEV] = service_id,
     661                [NODES_KEY_DEV] = devmap_handle,
    604662                [NODES_KEY_INDEX] = index
    605663        };
    606664        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;
     665        if (!hlp) {
     666                async_answer_0(rid, ENOENT);
     667                return;
     668        }
     669        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
     670            nh_link);
     671       
     672        if (size == nodep->size) {
     673                async_answer_0(rid, EOK);
     674                return;
     675        }
     676       
     677        if (size > SIZE_MAX) {
     678                async_answer_0(rid, ENOMEM);
     679                return;
     680        }
    616681       
    617682        void *newdata = realloc(nodep->data, size);
    618         if (!newdata)
    619                 return ENOMEM;
     683        if (!newdata) {
     684                async_answer_0(rid, ENOMEM);
     685                return;
     686        }
    620687       
    621688        if (size > nodep->size) {
     
    626693        nodep->size = size;
    627694        nodep->data = newdata;
    628         return EOK;
    629 }
    630 
    631 static int tmpfs_close(service_id_t service_id, fs_index_t index)
    632 {
    633         return EOK;
    634 }
    635 
    636 static int tmpfs_destroy(service_id_t service_id, fs_index_t index)
    637 {
     695        async_answer_0(rid, EOK);
     696}
     697
     698void tmpfs_close(ipc_callid_t rid, ipc_call_t *request)
     699{
     700        async_answer_0(rid, EOK);
     701}
     702
     703void tmpfs_destroy(ipc_callid_t rid, ipc_call_t *request)
     704{
     705        devmap_handle_t devmap_handle = (devmap_handle_t)IPC_GET_ARG1(*request);
     706        fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
     707        int rc;
     708
    638709        link_t *hlp;
    639710        unsigned long key[] = {
    640                 [NODES_KEY_DEV] = service_id,
     711                [NODES_KEY_DEV] = devmap_handle,
    641712                [NODES_KEY_INDEX] = index
    642713        };
    643714        hlp = hash_table_find(&nodes, key);
    644         if (!hlp)
    645                 return ENOENT;
     715        if (!hlp) {
     716                async_answer_0(rid, ENOENT);
     717                return;
     718        }
    646719        tmpfs_node_t *nodep = hash_table_get_instance(hlp, tmpfs_node_t,
    647720            nh_link);
    648         return tmpfs_destroy_node(FS_NODE(nodep));
    649 }
    650 
    651 static int tmpfs_sync(service_id_t service_id, fs_index_t index)
     721        rc = tmpfs_destroy_node(FS_NODE(nodep));
     722        async_answer_0(rid, rc);
     723}
     724
     725void tmpfs_open_node(ipc_callid_t rid, ipc_call_t *request)
     726{
     727        libfs_open_node(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     728}
     729
     730void tmpfs_stat(ipc_callid_t rid, ipc_call_t *request)
     731{
     732        libfs_stat(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
     733}
     734
     735void tmpfs_sync(ipc_callid_t rid, ipc_call_t *request)
    652736{
    653737        /*
     
    655739         * thus the sync operation is a no-op.
    656740         */
    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 };
     741        async_answer_0(rid, EOK);
     742}
    670743
    671744/**
    672745 * @}
    673746 */
    674 
Note: See TracChangeset for help on using the changeset viewer.