1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162 |
- /*
- * File : dfs_nfs.c
- * This file is part of Device File System in RT-Thread RTOS
- * COPYRIGHT (C) 2004-2011, RT-Thread Development Team
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- */
-
- #include <stdio.h>
- #include <rtthread.h>
- #include <dfs_fs.h>
- #include <dfs.h>
- #include <dfs_file.h>
- #include <rpc/rpc.h>
- #include "mount.h"
- #include "nfs.h"
- #define NAME_MAX 64
- #define DFS_NFS_MAX_MTU 1024
- #ifdef _WIN32
- #define strtok_r strtok_s
- #endif
- struct nfs_file
- {
- nfs_fh3 handle; /* handle */
- size_t offset; /* current offset */
- size_t size; /* total size */
- bool_t eof; /* end of file */
- };
- struct nfs_dir
- {
- nfs_fh3 handle;
- cookie3 cookie;
- cookieverf3 cookieverf;
- entry3 *entry;
- bool_t eof;
- READDIR3res res;
- };
- #define HOST_LENGTH 32
- #define EXPORT_PATH_LENGTH 32
- struct nfs_filesystem
- {
- nfs_fh3 root_handle;
- nfs_fh3 current_handle;
- CLIENT *nfs_client;
- CLIENT *mount_client;
- char host[HOST_LENGTH];
- char export[EXPORT_PATH_LENGTH];
- void *data; /* nfs_file or nfs_dir */
- };
- typedef struct nfs_filesystem nfs_filesystem;
- typedef struct nfs_file nfs_file;
- typedef struct nfs_dir nfs_dir;
- nfs_dir *nfs_opendir(nfs_filesystem *nfs, const char *path);
- static int nfs_parse_host_export(const char *host_export,
- char *host,
- size_t host_len,
- char *export,
- size_t export_len)
- {
- int index;
- for (index = 0; index < host_len; index ++)
- {
- /* it's end of string, failed */
- if (host_export[index] == 0)
- return -1;
- /* copy to host buffer */
- if (host_export[index] != ':')
- host[index] = host_export[index];
- else
- break;
- }
- /* host buffer is not enough, failed */
- if (index == host_len)
- return -1;
- /* make NULL */
- host_len = index;
- host[host_len] = '\0';
- host_len ++;
- /* copy export path */
- for (index = host_len; index < host_len + export_len; index ++)
- {
- if (host_export[index] == 0)
- {
- export[index - host_len] = '\0';
- return 0;
- }
- export[index - host_len] = host_export[index];
- }
- return -1;
- }
- static void copy_handle(nfs_fh3 *dest, const nfs_fh3 *source)
- {
- dest->data.data_len = source->data.data_len;
- dest->data.data_val = rt_malloc(dest->data.data_len);
- if (dest->data.data_val == NULL)
- {
- dest->data.data_len = 0;
- return;
- }
- memcpy(dest->data.data_val, source->data.data_val, dest->data.data_len);
- }
- static nfs_fh3 *get_handle(nfs_filesystem *nfs, const char *name)
- {
- nfs_fh3 *handle = NULL;
- char *file;
- char *path;
- char *init;
- init = path = rt_malloc(strlen(name)+1);
- if (init == NULL)
- return NULL;
- memcpy(init, name, strlen(name)+1);
- handle = rt_malloc(sizeof(nfs_fh3));
- if (handle == NULL)
- {
- rt_free(init);
- return NULL;
- }
- if (path[0] == '/')
- {
- path ++;
- copy_handle(handle, &nfs->root_handle);
- }
- else
- {
- copy_handle(handle, &nfs->current_handle);
- }
- while ((file = strtok_r(NULL, "/", &path)) != NULL)
- {
- LOOKUP3args args;
- LOOKUP3res res;
- memset(&res, 0, sizeof(res));
- copy_handle(&args.what.dir, handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- args.what.name = file;
- if (nfsproc3_lookup_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Lookup failed\n");
- rt_free(init);
- rt_free(handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- return NULL;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Lookup failed: %d\n", res.status);
- rt_free(init);
- rt_free(handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- xdr_free((xdrproc_t)xdr_LOOKUP3res, (char *)&res);
- return NULL;
- }
- copy_handle(handle, &res.LOOKUP3res_u.resok.object);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- xdr_free((xdrproc_t)xdr_LOOKUP3res, (char *)&res);
- }
- rt_free(init);
- return handle;
- }
- static nfs_fh3 *get_dir_handle(nfs_filesystem *nfs, const char *name)
- {
- nfs_fh3 *handle = NULL;
- char *file;
- char *path;
- char *init;
- init = path = rt_malloc(strlen(name)+1);
- if (init == NULL)
- return NULL;
- memcpy(init, name, strlen(name)+1);
- handle = rt_malloc(sizeof(nfs_fh3));
- if (handle == NULL)
- {
- rt_free(init);
- return NULL;
- }
- if (path[0] == '/')
- {
- path ++;
- copy_handle(handle, &nfs->root_handle);
- }
- else
- {
- copy_handle(handle, &nfs->current_handle);
- }
- while ((file = strtok_r(NULL, "/", &path)) != NULL && path[0] != 0)
- {
- LOOKUP3args args;
- LOOKUP3res res;
- memset(&res, 0, sizeof(res));
- copy_handle(&args.what.dir, handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- args.what.name = file;
- if (nfsproc3_lookup_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Lookup failed\n");
- rt_free(init);
- rt_free(handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- return NULL;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Lookup failed: %d\n", res.status);
- rt_free(init);
- rt_free(handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- xdr_free((xdrproc_t)xdr_LOOKUP3res, (char *)&res);
- return NULL;
- }
- copy_handle(handle, &res.LOOKUP3res_u.resok.object);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&args.what.dir);
- xdr_free((xdrproc_t)xdr_LOOKUP3res, (char *)&res);
- }
- rt_free(init);
- return handle;
- }
- static size_t nfs_get_filesize(nfs_filesystem *nfs, nfs_fh3 *handle)
- {
- GETATTR3args args;
- GETATTR3res res;
- fattr3 *info;
- size_t size;
- args.object = *handle;
- memset(&res, '\0', sizeof(res));
- if ((nfsproc3_getattr_3(args, &res, nfs->nfs_client)!=RPC_SUCCESS) ||
- res.status != NFS3_OK)
- {
- rt_kprintf("GetAttr failed: %d\n", res.status);
- return 0;
- }
- info = &res.GETATTR3res_u.resok.obj_attributes;
- size = info->size;
- xdr_free((xdrproc_t)xdr_GETATTR3res, (char *)&res);
-
- return size;
- }
- rt_bool_t nfs_is_directory(nfs_filesystem *nfs, const char *name)
- {
- GETATTR3args args;
- GETATTR3res res;
- fattr3 *info;
- nfs_fh3 *handle;
- rt_bool_t result;
- result = RT_FALSE;
- handle = get_handle(nfs, name);
- if (handle == NULL)
- return RT_FALSE;
- args.object = *handle;
- memset(&res, '\0', sizeof(res));
- if (nfsproc3_getattr_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("GetAttr failed\n");
- return RT_FALSE;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Getattr failed: %d\n", res.status);
- return RT_FALSE;
- }
- info=&res.GETATTR3res_u.resok.obj_attributes;
- if (info->type == NFS3DIR)
- result = RT_TRUE;
- xdr_free((xdrproc_t)xdr_GETATTR3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
-
- return result;
- }
- int nfs_create(nfs_filesystem *nfs, const char *name, mode_t mode)
- {
- CREATE3args args;
- CREATE3res res;
- int ret = 0;
- nfs_fh3 *handle;
- if (nfs->nfs_client == NULL)
- {
- return -1;
- }
- handle = get_dir_handle(nfs, name);
- if (handle == NULL)
- {
- return -1;
- }
- args.where.dir = *handle;
- args.where.name = strrchr(name, '/') + 1;
- if (args.where.name == NULL)
- {
- args.where.name = (char *)name;
- }
- args.how.mode = GUARDED;
- args.how.createhow3_u.obj_attributes.mode.set_it = TRUE;
- args.how.createhow3_u.obj_attributes.mode.set_mode3_u.mode = mode;
- args.how.createhow3_u.obj_attributes.uid.set_it = FALSE;
- args.how.createhow3_u.obj_attributes.gid.set_it = FALSE;
- args.how.createhow3_u.obj_attributes.size.set_it = FALSE;
- args.how.createhow3_u.obj_attributes.atime.set_it = DONT_CHANGE;
- args.how.createhow3_u.obj_attributes.mtime.set_it = DONT_CHANGE;
- memset(&res, 0, sizeof(res));
- if (nfsproc3_create_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Create failed\n");
- ret = -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Create failed: %d\n", res.status);
- ret = -1;
- }
- xdr_free((xdrproc_t)xdr_CREATE3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- return ret;
- }
- int nfs_mkdir(nfs_filesystem *nfs, const char *name, mode_t mode)
- {
- MKDIR3args args;
- MKDIR3res res;
- int ret = 0;
- nfs_fh3 *handle;
- if (nfs->nfs_client == NULL)
- return -1;
- handle = get_dir_handle(nfs, name);
- if (handle == NULL)
- return -1;
- args.where.dir = *handle;
- args.where.name = strrchr(name, '/') + 1;
- if (args.where.name == NULL)
- {
- args.where.name = (char *)name;
- }
- args.attributes.mode.set_it = TRUE;
- args.attributes.mode.set_mode3_u.mode = mode;
- args.attributes.uid.set_it = FALSE;
- args.attributes.gid.set_it = FALSE;
- args.attributes.size.set_it = FALSE;
- args.attributes.atime.set_it = DONT_CHANGE;
- args.attributes.mtime.set_it = DONT_CHANGE;
- memset(&res, 0, sizeof(res));
- if (nfsproc3_mkdir_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Mkdir failed\n");
- ret = -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Mkdir failed: %d\n", res.status);
- ret = -1;
- }
- xdr_free((xdrproc_t)xdr_MKDIR3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
-
- return ret;
- }
- /* mount(NULL, "/mnt", "nfs", 0, "192.168.1.1:/export") */
- int nfs_mount(struct dfs_filesystem *fs, unsigned long rwflag, const void *data)
- {
- mountres3 res;
- nfs_filesystem *nfs;
- nfs = (nfs_filesystem *)rt_malloc(sizeof(nfs_filesystem));
- memset(nfs, 0, sizeof(nfs_filesystem));
- if (nfs_parse_host_export((const char *)data, nfs->host, HOST_LENGTH,
- nfs->export, EXPORT_PATH_LENGTH) < 0)
- {
- rt_kprintf("host or export path error\n");
- goto __return;
- }
- nfs->mount_client=clnt_create((char *)nfs->host, MOUNT_PROGRAM, MOUNT_V3, "udp");
- if (nfs->mount_client == NULL)
- {
- rt_kprintf("create mount client failed\n");
- goto __return;
- }
- memset(&res, '\0', sizeof(mountres3));
- if (mountproc3_mnt_3((char *)nfs->export, &res, nfs->mount_client) != RPC_SUCCESS)
- {
- rt_kprintf("nfs mount failed\n");
- goto __return;
- }
- else if (res.fhs_status != MNT3_OK)
- {
- rt_kprintf("nfs mount failed\n");
- goto __return;
- }
- nfs->nfs_client=clnt_create((char *)nfs->host, NFS_PROGRAM, NFS_V3, "udp");
- if (nfs->nfs_client == NULL)
- {
- rt_kprintf("creat nfs client failed\n");
- goto __return;
- }
- copy_handle(&nfs->root_handle, (nfs_fh3 *)&res.mountres3_u.mountinfo.fhandle);
- copy_handle(&nfs->current_handle, &nfs->root_handle);
- nfs->nfs_client->cl_auth = authnone_create();
- fs->data = nfs;
- return 0;
- __return:
- if (nfs != NULL)
- {
- if (nfs->mount_client != NULL)
- {
- clnt_destroy(nfs->mount_client);
- }
- if (nfs->nfs_client != NULL)
- {
- if (nfs->nfs_client->cl_auth != NULL)
- {
- auth_destroy(nfs->nfs_client->cl_auth);
- }
- clnt_destroy(nfs->nfs_client);
- }
- rt_free(nfs);
- }
- return -1;
- }
- int nfs_unmount(struct dfs_filesystem *fs)
- {
- nfs_filesystem *nfs;
- RT_ASSERT(fs != NULL);
- RT_ASSERT(fs->data != NULL);
- nfs = (nfs_filesystem *)fs->data;
- if (nfs->mount_client != NULL &&
- mountproc3_umnt_3((char *)nfs->export, NULL, nfs->mount_client) != RPC_SUCCESS)
- {
- rt_kprintf("unmount failed\n");
- return -1;
- }
- /* destroy nfs client */
- if (nfs->nfs_client != NULL)
- {
- if (nfs->nfs_client->cl_auth != NULL)
- {
- auth_destroy(nfs->nfs_client->cl_auth);
- nfs->nfs_client->cl_auth = NULL;
- }
- clnt_destroy(nfs->nfs_client);
- nfs->nfs_client = NULL;
- }
- /* destroy mount client */
- if (nfs->mount_client != NULL)
- {
- if (nfs->mount_client->cl_auth != NULL)
- {
- auth_destroy(nfs->mount_client->cl_auth);
- nfs->mount_client->cl_auth = NULL;
- }
- clnt_destroy(nfs->mount_client);
- nfs->mount_client = NULL;
- }
- rt_free(nfs);
- fs->data = NULL;
- return 0;
- }
- int nfs_ioctl(struct dfs_fd *file, int cmd, void *args)
- {
- return -ENOSYS;
- }
- int nfs_read(struct dfs_fd *file, void *buf, size_t count)
- {
- READ3args args;
- READ3res res;
- ssize_t bytes, total=0;
- nfs_file *fd;
- nfs_filesystem *nfs;
- if (file->type == FT_DIRECTORY)
- return -EISDIR;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- fd = (nfs_file *)(nfs->data);
- RT_ASSERT(fd != NULL);
- if (nfs->nfs_client == NULL)
- return -1;
- /* end of file */
- if (fd->eof == TRUE)
- return 0;
- args.file = fd->handle;
- do {
- args.offset = fd->offset;
- args.count = count > DFS_NFS_MAX_MTU ? DFS_NFS_MAX_MTU : count;
- count -= args.count;
- memset(&res, 0, sizeof(res));
- if (nfsproc3_read_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Read failed\n");
- total = 0;
- break;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Read failed: %d\n", res.status);
- total = 0;
- break;
- }
- else
- {
- bytes = res.READ3res_u.resok.count;
- total += bytes;
- fd->offset += bytes;
- /* update current position */
- file->pos = fd->offset;
- memcpy(buf, res.READ3res_u.resok.data.data_val, bytes);
- buf = (void *)((char *)buf + args.count);
- if (res.READ3res_u.resok.eof)
- {
- /* something should probably be here */
- fd->eof = TRUE;
- break;
- }
- }
- xdr_free((xdrproc_t)xdr_READ3res, (char *)&res);
- } while(count > 0);
- xdr_free((xdrproc_t)xdr_READ3res, (char *)&res);
- return total;
- }
- int nfs_write(struct dfs_fd *file, const void *buf, size_t count)
- {
- WRITE3args args;
- WRITE3res res;
- ssize_t bytes, total=0;
- nfs_file *fd;
- nfs_filesystem *nfs;
- if (file->type == FT_DIRECTORY)
- return -EISDIR;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- fd = (nfs_file *)(nfs->data);
- RT_ASSERT(fd != NULL);
- if (nfs->nfs_client == NULL)
- return -1;
- args.file = fd->handle;
- args.stable = FILE_SYNC;
- do {
- args.offset = fd->offset;
- memset(&res, 0, sizeof(res));
- args.data.data_val=(void *)buf;
- args.count = count > DFS_NFS_MAX_MTU ? DFS_NFS_MAX_MTU : count;
- args.data.data_len = args.count;
- count -= args.count;
- buf = (const void *)((char *)buf + args.count);
- if (nfsproc3_write_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Write failed\n");
- total = 0;
- break;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Write failed: %d\n", res.status);
- total = 0;
- break;
- }
- else
- {
- bytes = res.WRITE3res_u.resok.count;
- fd->offset += bytes;
- total += bytes;
- /* update current position */
- file->pos = fd->offset;
- /* update file size */
- if (fd->size < fd->offset) fd->size = fd->offset;
- file->size = fd->size;
- }
- xdr_free((xdrproc_t)xdr_WRITE3res, (char *)&res);
- } while (count > 0);
- xdr_free((xdrproc_t)xdr_WRITE3res, (char *)&res);
- return total;
- }
- int nfs_lseek(struct dfs_fd *file, off_t offset)
- {
- nfs_file *fd;
- nfs_filesystem *nfs;
- if (file->type == FT_DIRECTORY)
- return -EISDIR;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- fd = (nfs_file *)(nfs->data);
- RT_ASSERT(fd != NULL);
- if (offset <= fd->size)
- {
- fd->offset = offset;
- return offset;
- }
- return -EIO;
- }
- int nfs_close(struct dfs_fd *file)
- {
- nfs_filesystem *nfs;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- if (file->type == FT_DIRECTORY)
- {
- struct nfs_dir *dir;
- dir = (struct nfs_dir *)nfs->data;
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&dir->handle);
- xdr_free((xdrproc_t)xdr_READDIR3res, (char *)&dir->res);
- rt_free(dir);
- }
- else if (file->type == FT_REGULAR)
- {
- struct nfs_file *fd;
- fd = (struct nfs_file *)nfs->data;
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)&fd->handle);
- rt_free(fd);
- }
- nfs->data = NULL;
- return 0;
- }
- int nfs_open(struct dfs_fd *file)
- {
- nfs_filesystem *nfs;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- if (file->flags & O_DIRECTORY)
- {
- nfs_dir *dir;
-
- if (file->flags & O_CREAT)
- {
- if (nfs_mkdir(nfs, file->path, 0755) < 0)
- return -EAGAIN;
- }
- /* open directory */
- dir = nfs_opendir(nfs, file->path);
- if (dir == NULL) return -ENOENT;
- nfs->data = dir;
- }
- else
- {
- nfs_file *fp;
- nfs_fh3 *handle;
- /* create file */
- if (file->flags & O_CREAT)
- {
- if (nfs_create(nfs, file->path, 0664) < 0)
- return -EAGAIN;
- }
- /* open file (get file handle ) */
- fp = rt_malloc(sizeof(nfs_file));
- if (fp == NULL)
- return -ENOMEM;
- handle = get_handle(nfs, file->path);
- if (handle == NULL)
- {
- rt_free(fp);
- return -ENOENT;
- }
- /* get size of file */
- fp->size = nfs_get_filesize(nfs, handle);
- fp->offset = 0;
- fp->eof = FALSE;
- copy_handle(&fp->handle, handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- if (file->flags & O_APPEND)
- {
- fp->offset = fp->size;
- }
- /* set private file */
- nfs->data = fp;
- file->size = fp->size;
- }
- return 0;
- }
- int nfs_stat(struct dfs_filesystem *fs, const char *path, struct stat *st)
- {
- GETATTR3args args;
- GETATTR3res res;
- fattr3 *info;
- nfs_fh3 *handle;
- nfs_filesystem *nfs;
- RT_ASSERT(fs != NULL);
- RT_ASSERT(fs->data != NULL);
- nfs = (nfs_filesystem *)fs->data;
- handle = get_handle(nfs, path);
- if (handle == NULL)
- return -1;
- args.object = *handle;
- memset(&res, '\0', sizeof(res));
- if (nfsproc3_getattr_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("GetAttr failed\n");
- return -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Getattr failed: %d\n", res.status);
- return -1;
- }
- info = &res.GETATTR3res_u.resok.obj_attributes;
- st->st_dev = 0;
- st->st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR | S_IWGRP | S_IWOTH;
- if (info->type == NFS3DIR)
- {
- st->st_mode &= ~S_IFREG;
- st->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
- }
- st->st_size = info->size;
- st->st_mtime = info->mtime.seconds;
- xdr_free((xdrproc_t)xdr_GETATTR3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- return 0;
- }
- nfs_dir *nfs_opendir(nfs_filesystem *nfs, const char *path)
- {
- nfs_dir *dir;
- nfs_fh3 *handle;
- dir = rt_malloc(sizeof(nfs_dir));
- if (dir == NULL)
- {
- return NULL;
- }
- handle = get_handle(nfs, path);
- if (handle == NULL)
- {
- rt_free(dir);
-
- return NULL;
- }
- copy_handle(&dir->handle, handle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- dir->cookie = 0;
- memset(&dir->cookieverf, '\0', sizeof(cookieverf3));
- dir->entry = NULL;
- dir->eof = FALSE;
- memset(&dir->res, '\0', sizeof(dir->res));
- return dir;
- }
- char *nfs_readdir(nfs_filesystem *nfs, nfs_dir *dir)
- {
- static char name[NAME_MAX];
- if (nfs->nfs_client == NULL || dir == NULL)
- return NULL;
- if (dir->entry == NULL)
- {
- READDIR3args args;
- xdr_free((xdrproc_t)xdr_READDIR3res, (char *)&dir->res);
- memset(&dir->res, '\0', sizeof(dir->res));
- args.dir = dir->handle;
- args.cookie = dir->cookie;
- memcpy(&args.cookieverf, &dir->cookieverf, sizeof(cookieverf3));
- args.count = 1024;
- if (nfsproc3_readdir_3(args, &dir->res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Readdir failed\n");
- return NULL;
- }
- else if (dir->res.status != NFS3_OK)
- {
- rt_kprintf("Readdir failed: %d\n", dir->res.status);
- return NULL;
- }
- memcpy(&dir->cookieverf, &dir->res.READDIR3res_u.resok.cookieverf, sizeof(cookieverf3));
- dir->eof = dir->res.READDIR3res_u.resok.reply.eof;
- dir->entry = dir->res.READDIR3res_u.resok.reply.entries;
- }
- if (dir->eof == TRUE && dir->entry == NULL)
- return NULL;
- dir->cookie = dir->entry->cookie;
- strncpy(name, dir->entry->name, NAME_MAX-1);
- dir->entry = dir->entry->nextentry;
- name[NAME_MAX - 1] = '\0';
- return name;
- }
- int nfs_unlink(struct dfs_filesystem *fs, const char *path)
- {
- int ret = 0;
- nfs_filesystem *nfs;
- RT_ASSERT(fs != NULL);
- RT_ASSERT(fs->data != NULL);
- nfs = (nfs_filesystem *)fs->data;
- if (nfs_is_directory(nfs, path) == RT_FALSE)
- {
- /* remove file */
- REMOVE3args args;
- REMOVE3res res;
- nfs_fh3 *handle;
- handle = get_dir_handle(nfs, path);
- if (handle == NULL)
- return -1;
- args.object.dir = *handle;
- args.object.name = strrchr(path, '/') + 1;
- if (args.object.name == NULL)
- {
- args.object.name = (char *)path;
- }
- memset(&res, 0, sizeof(res));
- if (nfsproc3_remove_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Remove failed\n");
- ret = -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Remove failed: %d\n", res.status);
- ret = -1;
- }
- xdr_free((xdrproc_t)xdr_REMOVE3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- }
- else
- {
- /* remove directory */
- RMDIR3args args;
- RMDIR3res res;
- nfs_fh3 *handle;
- handle = get_dir_handle(nfs, path);
- if (handle == NULL)
- return -1;
- args.object.dir = *handle;
- args.object.name = strrchr(path, '/') + 1;
- if (args.object.name == NULL)
- {
- args.object.name = (char *)path;
- }
- memset(&res, 0, sizeof(res));
- if (nfsproc3_rmdir_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Rmdir failed\n");
- ret = -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Rmdir failed: %d\n", res.status);
- ret = -1;
- }
- xdr_free((xdrproc_t)xdr_RMDIR3res, (char *)&res);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)handle);
- rt_free(handle);
- }
- return ret;
- }
- int nfs_rename(struct dfs_filesystem *fs, const char *src, const char *dest)
- {
- RENAME3args args;
- RENAME3res res;
- nfs_fh3 *sHandle;
- nfs_fh3 *dHandle;
- int ret = 0;
- nfs_filesystem *nfs;
- RT_ASSERT(fs != NULL);
- RT_ASSERT(fs->data != NULL);
- nfs = (nfs_filesystem *)fs->data;
- if (nfs->nfs_client == NULL)
- return -1;
- sHandle = get_dir_handle(nfs, src);
- if (sHandle == NULL)
- return -1;
- dHandle = get_dir_handle(nfs, dest);
- if (dHandle == NULL)
- return -1;
- args.from.dir = *sHandle;
- args.from.name = strrchr(src, '/') + 1;
- if (args.from.name == NULL)
- args.from.name = (char *)src;
- args.to.dir = *dHandle;
- args.to.name = strrchr(src, '/') + 1;
- if (args.to.name == NULL)
- args.to.name = (char *)dest;
- memset(&res, '\0', sizeof(res));
- if (nfsproc3_rename_3(args, &res, nfs->nfs_client) != RPC_SUCCESS)
- {
- rt_kprintf("Rename failed\n");
- ret = -1;
- }
- else if (res.status != NFS3_OK)
- {
- rt_kprintf("Rename failed: %d\n", res.status);
- ret = -1;
- }
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)sHandle);
- xdr_free((xdrproc_t)xdr_nfs_fh3, (char *)dHandle);
- xdr_free((xdrproc_t)xdr_RENAME3res, (char *)&res);
- return ret;
- }
- int nfs_getdents(struct dfs_fd *file, struct dirent *dirp, uint32_t count)
- {
- nfs_dir *dir;
- rt_uint32_t index;
- struct dirent *d;
- nfs_filesystem *nfs;
- char *name;
- RT_ASSERT(file->data != NULL);
- nfs = (nfs_filesystem *)((struct dfs_filesystem*)(file->data));
- dir = (nfs_dir *)(nfs->data);
- RT_ASSERT(dir != NULL);
- /* make integer count */
- count = (count / sizeof(struct dirent)) * sizeof(struct dirent);
- if (count == 0)
- return -EINVAL;
- index = 0;
- while (1)
- {
- d = dirp + index;
- name = nfs_readdir(nfs, dir);
- if (name == NULL)
- break;
- d->d_type = DT_REG;
- d->d_namlen = rt_strlen(name);
- d->d_reclen = (rt_uint16_t)sizeof(struct dirent);
- rt_strncpy(d->d_name, name, rt_strlen(name) + 1);
- index ++;
- if (index * sizeof(struct dirent) >= count)
- break;
- }
- return index * sizeof(struct dirent);
- }
- static const struct dfs_file_ops nfs_fops =
- {
- nfs_open,
- nfs_close,
- nfs_ioctl,
- nfs_read,
- nfs_write,
- NULL, /* flush */
- nfs_lseek,
- nfs_getdents,
- NULL, /* poll */
- };
- static const struct dfs_filesystem_ops _nfs =
- {
- "nfs",
- DFS_FS_FLAG_DEFAULT,
- &nfs_fops,
- nfs_mount,
- nfs_unmount,
- NULL, /* mkfs */
- NULL, /* statfs */
- nfs_unlink,
- nfs_stat,
- nfs_rename,
- };
- int nfs_init(void)
- {
- /* register nfs file system */
- dfs_register(&_nfs);
- return RT_EOK;
- }
- INIT_FS_EXPORT(nfs_init);
|