Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    rccca251 r5bb9907  
    7676        vfs_node_t *mr_node;
    7777        fs_index_t rindex;
    78         size_t rsize;
     78        aoff64_t rsize;
    7979        unsigned rlnkcnt;
     80        async_exch_t *exch;
    8081        sysarg_t rc;
    81         int phone;
    8282        aid_t msg;
    8383        ipc_call_t answer;
     
    123123                       
    124124                        /* Tell the mountee that it is being mounted. */
    125                         phone = vfs_grab_phone(fs_handle);
    126                         msg = async_send_1(phone, VFS_OUT_MOUNTED,
     125                        exch = vfs_exchange_grab(fs_handle);
     126                        msg = async_send_1(exch, VFS_OUT_MOUNTED,
    127127                            (sysarg_t) devmap_handle, &answer);
    128                         /* send the mount options */
    129                         rc = async_data_write_start(phone, (void *)opts,
     128                        /* Send the mount options */
     129                        rc = async_data_write_start(exch, (void *)opts,
    130130                            str_size(opts));
     131                        vfs_exchange_release(exch);
     132                       
    131133                        if (rc != EOK) {
    132134                                async_wait_for(msg, NULL);
    133                                 vfs_release_phone(fs_handle, phone);
    134135                                fibril_rwlock_write_unlock(&namespace_rwlock);
    135136                                async_answer_0(rid, rc);
     
    137138                        }
    138139                        async_wait_for(msg, &rc);
    139                         vfs_release_phone(fs_handle, phone);
    140140                       
    141141                        if (rc != EOK) {
     
    146146
    147147                        rindex = (fs_index_t) IPC_GET_ARG1(answer);
    148                         rsize = (size_t) IPC_GET_ARG2(answer);
    149                         rlnkcnt = (unsigned) IPC_GET_ARG3(answer);
     148                        rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer), IPC_GET_ARG3(answer));
     149                        rlnkcnt = (unsigned) IPC_GET_ARG4(answer);
    150150                       
    151151                        mr_res.triplet.fs_handle = fs_handle;
     
    182182         */
    183183       
    184         int mountee_phone = vfs_grab_phone(fs_handle);
    185         assert(mountee_phone >= 0);
    186 
    187         phone = vfs_grab_phone(mp_res.triplet.fs_handle);
    188         msg = async_send_4(phone, VFS_OUT_MOUNT,
     184        async_exch_t *mountee_exch = vfs_exchange_grab(fs_handle);
     185        assert(mountee_exch);
     186       
     187        exch = vfs_exchange_grab(mp_res.triplet.fs_handle);
     188        msg = async_send_4(exch, VFS_OUT_MOUNT,
    189189            (sysarg_t) mp_res.triplet.devmap_handle,
    190190            (sysarg_t) mp_res.triplet.index,
     
    192192            (sysarg_t) devmap_handle, &answer);
    193193       
    194         /* send connection */
    195         rc = async_req_1_0(phone, IPC_M_CONNECTION_CLONE, mountee_phone);
    196         if (rc != EOK) {
     194        /* Send connection */
     195        rc = async_exchange_clone(exch, mountee_exch);
     196        vfs_exchange_release(mountee_exch);
     197       
     198        if (rc != EOK) {
     199                vfs_exchange_release(exch);
    197200                async_wait_for(msg, NULL);
    198                 vfs_release_phone(fs_handle, mountee_phone);
    199                 vfs_release_phone(mp_res.triplet.fs_handle, phone);
     201               
    200202                /* Mount failed, drop reference to mp_node. */
    201203                if (mp_node)
    202204                        vfs_node_put(mp_node);
    203                 async_answer_0(rid, rc);
    204                 fibril_rwlock_write_unlock(&namespace_rwlock);
    205                 return;
    206         }
    207 
    208         vfs_release_phone(fs_handle, mountee_phone);
     205               
     206                async_answer_0(rid, rc);
     207                fibril_rwlock_write_unlock(&namespace_rwlock);
     208                return;
     209        }
    209210       
    210211        /* send the mount options */
    211         rc = async_data_write_start(phone, (void *)opts, str_size(opts));
    212         if (rc != EOK) {
     212        rc = async_data_write_start(exch, (void *) opts, str_size(opts));
     213        if (rc != EOK) {
     214                vfs_exchange_release(exch);
    213215                async_wait_for(msg, NULL);
    214                 vfs_release_phone(mp_res.triplet.fs_handle, phone);
     216               
    215217                /* Mount failed, drop reference to mp_node. */
    216218                if (mp_node)
    217219                        vfs_node_put(mp_node);
    218                 fibril_rwlock_write_unlock(&namespace_rwlock);
    219                 async_answer_0(rid, rc);
    220                 return;
    221         }
     220               
     221                fibril_rwlock_write_unlock(&namespace_rwlock);
     222                async_answer_0(rid, rc);
     223                return;
     224        }
     225       
     226        vfs_exchange_release(exch);
    222227        async_wait_for(msg, &rc);
    223         vfs_release_phone(mp_res.triplet.fs_handle, phone);
    224228       
    225229        if (rc == EOK) {
    226230                rindex = (fs_index_t) IPC_GET_ARG1(answer);
    227                 rsize = (size_t) IPC_GET_ARG2(answer);
    228                 rlnkcnt = (unsigned) IPC_GET_ARG3(answer);
    229        
     231                rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer),
     232                    IPC_GET_ARG3(answer));
     233                rlnkcnt = (unsigned) IPC_GET_ARG4(answer);
     234               
    230235                mr_res.triplet.fs_handle = fs_handle;
    231236                mr_res.triplet.devmap_handle = devmap_handle;
     
    234239                mr_res.lnkcnt = rlnkcnt;
    235240                mr_res.type = VFS_NODE_DIRECTORY;
    236        
     241               
    237242                /* Add reference to the mounted root. */
    238243                mr_node = vfs_node_get(&mr_res);
     
    243248                        vfs_node_put(mp_node);
    244249        }
    245 
     250       
    246251        async_answer_0(rid, rc);
    247252        fibril_rwlock_write_unlock(&namespace_rwlock);
     
    303308       
    304309        /*
    305          * Wait for IPC_M_PING so that we can return an error if we don't know
     310         * Wait for VFS_IN_PING so that we can return an error if we don't know
    306311         * fs_name.
    307312         */
    308313        ipc_call_t data;
    309314        ipc_callid_t callid = async_get_call(&data);
    310         if (IPC_GET_IMETHOD(data) != IPC_M_PING) {
     315        if (IPC_GET_IMETHOD(data) != VFS_IN_PING) {
    311316                async_answer_0(callid, ENOTSUP);
    312317                async_answer_0(rid, ENOTSUP);
     
    321326         * This will also give us its file system handle.
    322327         */
    323         fibril_mutex_lock(&fs_head_lock);
     328        fibril_mutex_lock(&fs_list_lock);
    324329        fs_handle_t fs_handle;
    325330recheck:
     
    327332        if (!fs_handle) {
    328333                if (flags & IPC_FLAG_BLOCKING) {
    329                         fibril_condvar_wait(&fs_head_cv, &fs_head_lock);
     334                        fibril_condvar_wait(&fs_list_cv, &fs_list_lock);
    330335                        goto recheck;
    331336                }
    332337               
    333                 fibril_mutex_unlock(&fs_head_lock);
     338                fibril_mutex_unlock(&fs_list_lock);
    334339                async_answer_0(callid, ENOENT);
    335340                async_answer_0(rid, ENOENT);
     
    339344                return;
    340345        }
    341         fibril_mutex_unlock(&fs_head_lock);
     346        fibril_mutex_unlock(&fs_list_lock);
    342347       
    343348        /* Acknowledge that we know fs_name. */
     
    358363        vfs_lookup_res_t mr_res;
    359364        vfs_node_t *mr_node;
    360         int phone;
    361 
     365        async_exch_t *exch;
     366       
    362367        /*
    363368         * Receive the mount point path.
     
    367372        if (rc != EOK)
    368373                async_answer_0(rid, rc);
    369 
     374       
    370375        /*
    371376         * Taking the namespace lock will do two things for us. First, it will
     
    395400                return;
    396401        }
    397 
     402       
    398403        /*
    399404         * Count the total number of references for the mounted file system. We
     
    411416                return;
    412417        }
    413 
     418       
    414419        if (str_cmp(mp, "/") == 0) {
    415 
     420               
    416421                /*
    417422                 * Unmounting the root file system.
     
    420425                 * VFS_OUT_UNMOUNTED directly to the mounted file system.
    421426                 */
    422 
     427               
    423428                free(mp);
    424                 phone = vfs_grab_phone(mr_node->fs_handle);
    425                 rc = async_req_1_0(phone, VFS_OUT_UNMOUNTED,
     429               
     430                exch = vfs_exchange_grab(mr_node->fs_handle);
     431                rc = async_req_1_0(exch, VFS_OUT_UNMOUNTED,
    426432                    mr_node->devmap_handle);
    427                 vfs_release_phone(mr_node->fs_handle, phone);
     433                vfs_exchange_release(exch);
     434               
    428435                if (rc != EOK) {
    429436                        fibril_rwlock_write_unlock(&namespace_rwlock);
     
    432439                        return;
    433440                }
     441               
    434442                rootfs.fs_handle = 0;
    435443                rootfs.devmap_handle = 0;
    436444        } else {
    437 
     445               
    438446                /*
    439447                 * Unmounting a non-root file system.
     
    442450                 * file system, so we delegate the operation to it.
    443451                 */
    444 
     452               
    445453                rc = vfs_lookup_internal(mp, L_MP, &mp_res, NULL);
    446454                free(mp);
     
    451459                        return;
    452460                }
     461               
    453462                vfs_node_t *mp_node = vfs_node_get(&mp_res);
    454463                if (!mp_node) {
     
    458467                        return;
    459468                }
    460 
    461                 phone = vfs_grab_phone(mp_node->fs_handle);
    462                 rc = async_req_2_0(phone, VFS_OUT_UNMOUNT,
     469               
     470                exch = vfs_exchange_grab(mp_node->fs_handle);
     471                rc = async_req_2_0(exch, VFS_OUT_UNMOUNT,
    463472                    mp_node->devmap_handle, mp_node->index);
    464                 vfs_release_phone(mp_node->fs_handle, phone);
     473                vfs_exchange_release(exch);
     474               
    465475                if (rc != EOK) {
    466476                        fibril_rwlock_write_unlock(&namespace_rwlock);
     
    470480                        return;
    471481                }
    472 
     482               
    473483                /* Drop the reference we got above. */
    474484                vfs_node_put(mp_node);
     
    476486                vfs_node_put(mp_node);
    477487        }
    478 
    479 
     488       
    480489        /*
    481490         * All went well, the mounted file system was successfully unmounted.
     
    483492         */
    484493        vfs_node_forget(mr_node);
    485 
     494       
    486495        fibril_rwlock_write_unlock(&namespace_rwlock);
    487496        async_answer_0(rid, EOK);
     
    698707         */
    699708        fibril_mutex_lock(&file->lock);
    700         int fs_phone = vfs_grab_phone(file->node->fs_handle);
     709        async_exch_t *fs_exch = vfs_exchange_grab(file->node->fs_handle);
    701710       
    702711        /* Make a VFS_OUT_SYMC request at the destination FS server. */
    703712        aid_t msg;
    704713        ipc_call_t answer;
    705         msg = async_send_2(fs_phone, VFS_OUT_SYNC, file->node->devmap_handle,
     714        msg = async_send_2(fs_exch, VFS_OUT_SYNC, file->node->devmap_handle,
    706715            file->node->index, &answer);
    707 
     716       
     717        vfs_exchange_release(fs_exch);
     718       
    708719        /* Wait for reply from the FS server. */
    709720        sysarg_t rc;
    710721        async_wait_for(msg, &rc);
    711722       
    712         vfs_release_phone(file->node->fs_handle, fs_phone);
    713723        fibril_mutex_unlock(&file->lock);
    714 
     724       
    715725        vfs_file_put(file);
    716726        async_answer_0(rid, rc);
    717727}
    718728
    719 int vfs_close_internal(vfs_file_t *file)
    720 {
    721         /*
    722          * Lock the open file structure so that no other thread can manipulate
    723          * the same open file at a time.
    724          */
    725         fibril_mutex_lock(&file->lock);
    726        
    727         if (file->refcnt <= 1) {
    728                 /* Only close the file on the destination FS server
    729                    if there are no more file descriptors (except the
    730                    present one) pointing to this file. */
    731                
    732                 int fs_phone = vfs_grab_phone(file->node->fs_handle);
    733                
    734                 /* Make a VFS_OUT_CLOSE request at the destination FS server. */
    735                 aid_t msg;
    736                 ipc_call_t answer;
    737                 msg = async_send_2(fs_phone, VFS_OUT_CLOSE,
    738                     file->node->devmap_handle, file->node->index, &answer);
    739                
    740                 /* Wait for reply from the FS server. */
    741                 sysarg_t rc;
    742                 async_wait_for(msg, &rc);
    743                
    744                 vfs_release_phone(file->node->fs_handle, fs_phone);
    745                 fibril_mutex_unlock(&file->lock);
    746                
    747                 return IPC_GET_ARG1(answer);
    748         }
    749        
    750         fibril_mutex_unlock(&file->lock);
    751         return EOK;
    752 }
    753 
    754729void vfs_close(ipc_callid_t rid, ipc_call_t *request)
    755730{
    756731        int fd = IPC_GET_ARG1(*request);
    757        
    758         /* Lookup the file structure corresponding to the file descriptor. */
    759         vfs_file_t *file = vfs_file_get(fd);
    760         if (!file) {
    761                 async_answer_0(rid, ENOENT);
    762                 return;
    763         }
    764        
    765         int ret = vfs_close_internal(file);
    766         if (ret != EOK)
    767                 async_answer_0(rid, ret);
    768        
    769         vfs_file_put(file);
    770         ret = vfs_fd_free(fd);
     732        int ret = vfs_fd_free(fd);
    771733        async_answer_0(rid, ret);
    772734}
     
    774736static void vfs_rdwr(ipc_callid_t rid, ipc_call_t *request, bool read)
    775737{
    776         vfs_info_t *vi;
    777 
    778738        /*
    779739         * The following code strongly depends on the fact that the files data
     
    785745         * open files supports parallel access!
    786746         */
    787 
     747       
    788748        int fd = IPC_GET_ARG1(*request);
    789749       
     
    800760         */
    801761        fibril_mutex_lock(&file->lock);
    802 
    803         vi = fs_handle_to_info(file->node->fs_handle);
    804         assert(vi);
    805 
     762       
     763        vfs_info_t *fs_info = fs_handle_to_info(file->node->fs_handle);
     764        assert(fs_info);
     765       
    806766        /*
    807767         * Lock the file's node so that no other client can read/write to it at
     
    809769         * write implementation does not modify the file size.
    810770         */
    811         if (read || (vi->concurrent_read_write && vi->write_retains_size))
     771        if ((read) ||
     772            ((fs_info->concurrent_read_write) && (fs_info->write_retains_size)))
    812773                fibril_rwlock_read_lock(&file->node->contents_rwlock);
    813774        else
    814775                fibril_rwlock_write_lock(&file->node->contents_rwlock);
    815 
     776       
    816777        if (file->node->type == VFS_NODE_DIRECTORY) {
    817778                /*
     
    823784        }
    824785       
    825         int fs_phone = vfs_grab_phone(file->node->fs_handle);
     786        async_exch_t *fs_exch = vfs_exchange_grab(file->node->fs_handle);
    826787       
    827788        /*
     
    835796        ipc_call_t answer;
    836797        if (read) {
    837                 rc = async_data_read_forward_3_1(fs_phone, VFS_OUT_READ,
    838                     file->node->devmap_handle, file->node->index, file->pos,
    839                     &answer);
     798                rc = async_data_read_forward_4_1(fs_exch, VFS_OUT_READ,
     799                    file->node->devmap_handle, file->node->index,
     800                    LOWER32(file->pos), UPPER32(file->pos), &answer);
    840801        } else {
    841802                if (file->append)
    842803                        file->pos = file->node->size;
    843804               
    844                 rc = async_data_write_forward_3_1(fs_phone, VFS_OUT_WRITE,
    845                     file->node->devmap_handle, file->node->index, file->pos,
    846                     &answer);
    847         }
    848        
    849         vfs_release_phone(file->node->fs_handle, fs_phone);
     805                rc = async_data_write_forward_4_1(fs_exch, VFS_OUT_WRITE,
     806                    file->node->devmap_handle, file->node->index,
     807                    LOWER32(file->pos), UPPER32(file->pos), &answer);
     808        }
     809       
     810        vfs_exchange_release(fs_exch);
    850811       
    851812        size_t bytes = IPC_GET_ARG1(answer);
     
    855816       
    856817        /* Unlock the VFS node. */
    857         if (read || (vi->concurrent_read_write && vi->write_retains_size))
     818        if ((read) ||
     819            ((fs_info->concurrent_read_write) && (fs_info->write_retains_size)))
    858820                fibril_rwlock_read_unlock(&file->node->contents_rwlock);
    859821        else {
    860822                /* Update the cached version of node's size. */
    861823                if (rc == EOK)
    862                         file->node->size = IPC_GET_ARG2(answer);
     824                        file->node->size = MERGE_LOUP32(IPC_GET_ARG2(answer),
     825                            IPC_GET_ARG3(answer));
    863826                fibril_rwlock_write_unlock(&file->node->contents_rwlock);
    864827        }
     
    975938    fs_index_t index, aoff64_t size)
    976939{
    977         sysarg_t rc;
    978         int fs_phone;
    979        
    980         fs_phone = vfs_grab_phone(fs_handle);
    981         rc = async_req_4_0(fs_phone, VFS_OUT_TRUNCATE, (sysarg_t) devmap_handle,
    982             (sysarg_t) index, LOWER32(size), UPPER32(size));
    983         vfs_release_phone(fs_handle, fs_phone);
    984         return (int)rc;
     940        async_exch_t *exch = vfs_exchange_grab(fs_handle);
     941        sysarg_t rc = async_req_4_0(exch, VFS_OUT_TRUNCATE,
     942            (sysarg_t) devmap_handle, (sysarg_t) index, LOWER32(size),
     943            UPPER32(size));
     944        vfs_exchange_release(exch);
     945       
     946        return (int) rc;
    985947}
    986948
     
    1032994        fibril_mutex_lock(&file->lock);
    1033995
    1034         int fs_phone = vfs_grab_phone(file->node->fs_handle);
     996        async_exch_t *exch = vfs_exchange_grab(file->node->fs_handle);
    1035997       
    1036998        aid_t msg;
    1037         msg = async_send_3(fs_phone, VFS_OUT_STAT, file->node->devmap_handle,
     999        msg = async_send_3(exch, VFS_OUT_STAT, file->node->devmap_handle,
    10381000            file->node->index, true, NULL);
    1039         async_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     1001        async_forward_fast(callid, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     1002       
     1003        vfs_exchange_release(exch);
     1004       
    10401005        async_wait_for(msg, &rc);
    1041         vfs_release_phone(file->node->fs_handle, fs_phone);
    1042 
     1006       
    10431007        fibril_mutex_unlock(&file->lock);
    10441008        vfs_file_put(file);
     
    10831047        fibril_rwlock_read_unlock(&namespace_rwlock);
    10841048
    1085         int fs_phone = vfs_grab_phone(node->fs_handle);
     1049        async_exch_t *exch = vfs_exchange_grab(node->fs_handle);
     1050       
    10861051        aid_t msg;
    1087         msg = async_send_3(fs_phone, VFS_OUT_STAT, node->devmap_handle,
     1052        msg = async_send_3(exch, VFS_OUT_STAT, node->devmap_handle,
    10881053            node->index, false, NULL);
    1089         async_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     1054        async_forward_fast(callid, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     1055       
     1056        vfs_exchange_release(exch);
    10901057       
    10911058        sysarg_t rv;
    10921059        async_wait_for(msg, &rv);
    1093         vfs_release_phone(node->fs_handle, fs_phone);
    10941060
    10951061        async_answer_0(rid, rv);
     
    13691335        fibril_mutex_lock(&oldfile->lock);
    13701336       
    1371         /* Lookup an open file structure possibly corresponding to newfd. */
    1372         vfs_file_t *newfile = vfs_file_get(newfd);
    1373         if (newfile) {
    1374                 /* Close the originally opened file. */
    1375                 int ret = vfs_close_internal(newfile);
    1376                 if (ret != EOK) {
    1377                         fibril_mutex_unlock(&oldfile->lock);
    1378                         vfs_file_put(oldfile);
    1379                         vfs_file_put(newfile);
    1380                         async_answer_0(rid, ret);
    1381                         return;
    1382                 }
    1383                
    1384                 ret = vfs_fd_free(newfd);
    1385                 if (ret != EOK) {
    1386                         fibril_mutex_unlock(&oldfile->lock);
    1387                         vfs_file_put(oldfile);
    1388                         vfs_file_put(newfile);
    1389                         async_answer_0(rid, ret);
    1390                         return;
    1391                 }
    1392                 vfs_file_put(newfile);
    1393         }
     1337        /* Make sure newfd is closed. */
     1338        (void) vfs_fd_free(newfd);
    13941339       
    13951340        /* Assign the old file to newfd. */
Note: See TracChangeset for help on using the changeset viewer.