亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? nfsdrv.c

?? VXWORKS源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
/* nfsDrv.c - Network File System (NFS) I/O driver *//* Copyright 1984 - 2001 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------03l,07may02,kbw  man page edits03k,06nov01,vvv  made max. path length configurable (SPR #63551)03j,15oct01,rae  merge from truestack ver 03s, base 03h (SPR #9357 etc.)03i,07feb01,spm  merged from version 03o of tor3_x branch (base 03h):                 fixed group validation in nfsMountAll (SPR #3524),                 added permission checks to nfsOpen() routine (SPR #21991)03h,14mar99,jdi  doc: removed refs to config.h and/or configAll.h (SPR 25663).03g,15dec98,cjtc added helper routine nfsDrvNumGet() to return the nfs		 driver number in the io system. This is needed by the		 WindView host to ensure that the upload is going via		 the upload mechanism requested03f,20nov97,gnn  fix for spr#5436, need to support FIOFSTATFSGET03e,26aug97,spm  removed compiler warnings (SPR #7866)03f,19aug97,cth  changed nfsCacheSize back to before 03e (SPR 7834) fixed by		 fixing SPR 8460.03e,15apr97,cth  added simsol specific fix for spr#7834 (for sirocco release),            +dvs  at some pt this probably needs to be better integrated.03d,06aug96,sgv  fix for spr#646802s,13feb95,jdi  doc tweaks.02r,12jan95,rhp  doc: add FIOSYNC to list of NFS ioctl functions. 		   Also, jdi doc tweaks to nfsDevListGet() and nfsDevInfoGet().02q,01dec93,jag  added the routines nfsDevListGet(), and nfsDevInfoGet().  		 These routines provide support for the SNMP demo.02q,08sep94,jmm  changed NFS client to use new RPC genned xdr routines02p,28jul93,jmm  added permission checking to nfsOpen () (spr 2046)02o,01feb93,jdi  documentation cleanup for 5.1; added third param to		 ioctl() examples.02n,13nov92,dnw  added include of semLibP.h02m,21oct92,jdi  removed mangen SECTION designation.02l,02oct92,srh  added ioctl(FIOGETFL) to return file's open mode02k,16sep92,jcf  added include of errnoLib.h.02j,04sep92,jmm  changed nfsUnmount to make sure device names match exactly                   (spr 1564)02i,19jul92,smb  added include fcntl.h.02h,26may92,rrr  the tree shuffle02g,19Mar92,jmm  changed nfsSeek to allow seeks beyond EOF                 added #include of pathLib.h02f,20jan92,jmm  changed nfsOpen to not truncate path names after                 looking up symlinks02e,16dec91,gae  added includes plus fixes for ANSI.02d,04oct91,rrr  passed through the ansification filter                  -changed functions to ansi style		  -changed includes to have absolute path from h/		  -changed READ, WRITE and UPDATE to O_RDONLY O_WRONLY and ...		  -changed VOID to void		  -changed copyright notice02c,05apr91,jdi	 documentation -- removed header parens and x-ref numbers;		 doc review by dnw.02b,21feb91,jaa	 documentation cleanup.02a,08oct90,dnw  changed nfsMountAll verbose flag to quiet flag.01z,08oct90,hjb  de-linted.01y,02oct90,hjb  nfsWrite() changed to avoid reading data into cache to		   keep cache up-to-date when size of data being written		   is bigger than the nfs cache size.01x,10aug90,dnw  added verbose arg to nfsMountAll().01w,26jun90,jcf  changed semaphore types.		 removed super semaphores.01v,29may90,dnw  fixed nfsMount to free allocated memory if iosDevAdd returns		   ERROR01u,10may90,dnw  added nfsMountAll		 change nfsClose() to not call nfsClientClose() (unless		   nfsAutoClose is set TRUE)		 made SSEMAPHORE include embedded SEM_BINARY which is inited		   instead of a SEM_ID which is created (to reduce malloc).		 changed NFS_MAXPATHLEN to (PATH_MAX + 1)01t,01may90,llk  added FIOREADDIR and FIOFSTATGET ioctl calls.		 deleted FIODIRENTRY ioctl call.01s,01apr90,llk  changed nfsRead() to always return the number of bytes		   requested by caller (up to the bytes left in the file).		 changed name nfsFlushCache() to nfsCacheFlush().		 added "DEFICIENCIES" documentation (and probably some		   deficiencies).		 made string arrays shorter than defined in the NFS spec.		 fixed bug which didn't update file ptr correctly if cache		   size was 0.		 coalesced malloc of cache and fd into one malloc.01r,14mar90,jdi  documentation cleanup.01q,09aug89,dab  made nfsOpen() check for O_TRUNC flag.                 made nfsCreate() truncate file if file already exists.01p,12jul89,llk  lint.01o,24mar89,dab  caching disabled when nfsCacheSize is zero;           +gae  formerly a bug when nfsCacheSize was zero.01n,23mar89,dab  added FIOSYNC option to nfsIoctl().01m,21nov88,jcf  lint.01l,19oct88,llk  documentation.01k,28sep88,llk  documentation.01j,24aug88,gae  documentation.  Made nfsMount() check hostname, and		 allow default local name.01i,07jul88,jcf  lint.01h,30jun88,llk  changed to handle links.		 added nfsDevShow().01g,22jun88,dnw  changed taskIdGet() to taskIdSelf().01f,16jun88,llk  changed to more v4 names.01e,04jun88,llk  added rm, mkdir, rmdir.		 changed how nfsOpen retrieves directory and file names.01d,30may88,dnw  changed to v4 names.01c,04may88,jcf  changed ssemaphores to be consistent with new semLib.01b,22apr88,gae  fixed drvnum reference in nfsUnmount().01a,19apr88,llk  written.*//*This driver provides facilities for accessing files transparently over thenetwork via NFS (Network File System).  By creating a network devicewith nfsMount(), files on a remote NFS system (such as a UNIX system) canbe handled as if they were local.USER-CALLABLE ROUTINESThe nfsDrv() routine initializes the driver.  The nfsMount() and nfsUnmount()routines mount and unmount file systems.  The nfsMountAll() routine mountsall file systems exported by a specified host.INITIALIZATIONBefore using the network driver, it must be initialized by calling nfsDrv().This routine must be called before any reads, writes, or other NFS calls.This is done automatically when INCLUDE_NFS is defined..CREATING NFS DEVICESIn order to access a remote file system, an NFS device must be created bycalling nfsMount().  For example, to create the device `/myd0/' for the filesystem `/d0/' on the host `wrs', call:.CS    nfsMount ("wrs", "/d0/", "/myd0/");.CEThe file `/d0/dog' on the host `wrs' can now be accessed as `/myd0/dog'.If the third parameter to nfsMount() is NULL, VxWorks creates a device withthe same name as the file system.  For example, the call:.CS    nfsMount ("wrs", "/d0/", NULL);.CEor from the shell:.CS    nfsMount "wrs", "/d0/".CEcreates the device `/d0/'.  The file `/d0/dog' is accessed by the same name,`/d0/dog'.Before mounting a file system, the host must already have been createdwith hostAdd().  The routine nfsDevShow() displays the mounted NFS devices.IOCTL FUNCTIONSThe NFS driver responds to the following ioctl() functions:.iP "FIOGETNAME" 18 3Gets the file name of <fd> and copies it to the buffer referenced by <nameBuf>:.CS    status = ioctl (fd, FIOGETNAME, &nameBuf);.CE.iP "FIONREAD"Copies to <nBytesUnread> the number of bytes remaining in the filespecified by <fd>:.CS    status = ioctl (fd, FIONREAD, &nBytesUnread);.CE.iP "FIOSEEK"Sets the current byte offset in the file to the position specified by<newOffset>.  If the seek goes beyond the end-of-file, the file grows.The end-of-file pointer gets moved to the new position, and the new spaceis filled with zeros:.CS    status = ioctl (fd, FIOSEEK, newOffset);.CE.iP "FIOSYNC"Flush data to the remote NFS file.  It takes no additional argument:.CS    status = ioctl (fd, FIOSYNC, 0);.CE.iP "FIOWHERE"Returns the current byte position in the file.  This is the byte offset ofthe next byte to be read or written.  It takes no additional argument:.CS    position = ioctl (fd, FIOWHERE, 0);.CE.iP "FIOREADDIR"Reads the next directory entry.  The argument <dirStruct> is a pointer toa directory descriptor of type DIR.  Normally, the readdir() routine is used toread a directory, rather than using the FIOREADDIR function directly.  Seethe manual entry for dirLib:.CS    DIR dirStruct;    fd = open ("directory", O_RDONLY);    status = ioctl (fd, FIOREADDIR, &dirStruct);.CE.iP "FIOFSTATGET"Gets file status information (directory entry data).  The argument<statStruct> is a pointer to a stat structure that is filled with datadescribing the specified file.  Normally, the stat() or fstat() routine isused to obtain file information, rather than using the FIOFSTATGETfunction directly.  See the manual entry for dirLib:.CS    struct stat statStruct;    fd = open ("file", O_RDONLY);    status = ioctl (fd, FIOFSTATGET, &statStruct);.CE.iP "FIOFSTATFSGET"Gets the file system parameters for and open file descriptor.  The argument<statfsStruct> is a pointer to a statfs structure that is filled with datadescribing the underlying filesystem.  Normally, the stat() or fstat() routineis used to obtain file information, rather than using the FIOFSTATGET functiondirectly.  See the manual entry for dirLib:.CS    statfs statfsStruct;    fd = open ("directory", O_RDONLY);    status = ioctl (fd, FIOFSTATFSGET, &statfsStruct);.CEDEFICIENCIESThere is only one client handle/cache per task.Performance is poor if a task is accessing two or more NFS files.Changing <nfsCacheSize> after a file is open could cause adverse effects.However, changing it before opening any NFS file descriptors should notpose a problem.INCLUDE FILES: nfsDrv.h, ioLib.h, dirent.hSEE ALSO: dirLib, nfsLib, hostAdd(), ioctl(),*/#include "vxWorks.h"#include "iosLib.h"#include "ioLib.h"#include "memLib.h"#include "stdlib.h"#include "semLib.h"#include "string.h"#include "lstLib.h"#include "rpc/rpc.h"#include "xdr_nfs.h"#include "xdr_nfsserv.h"#include "hostLib.h"#include "sys/stat.h"#include "dirent.h"#include "errnoLib.h"#include "errno.h"#include "stdio.h"#include "nfsLib.h"#include "nfsDrv.h"#include "pathLib.h"#include "fcntl.h"#include "memPartLib.h"#include "private/semLibP.h"IMPORT unsigned int nfsMaxMsgLen;	/* max. length of NFs read/write buf */IMPORT int          nfsMaxPath;         /* max. length of file path *//* XXX FD_MODE is defined in here and in netDrv */#define FD_MODE		3	/* mode mask for opened file */				/* O_RDONLY, O_WRONLY or O_RDWR */#ifdef __GNUC__# ifndef alloca#  define alloca __builtin_alloca# endif#endiftypedef struct			/* NFS_DEV - nfs device structure */    {    DEV_HDR	devHdr;			  /* nfs device header */    char	host[MAXHOSTNAMELEN];	  /* host for this device */    nfs_fh	fileHandle;		  /* handle for mounted file system */    /*     * File system mounted on this dev - though it appears as a single      * character, it is really a character array - the memory for the array     * is allocated when an NFS_DEV struct is allocated. This change was      * required for configurable file path length support.     */    char	fileSystem[1];                } NFS_DEV;/* nfs file descriptor */typedef struct			/* NFS_FD - NFS file descriptor */    {    NFS_DEV	*nfsDev;		/* pointer to this file's NFS device */    nfs_fh	 fileHandle;		/* file's file handle */    nfs_fh	 dirHandle;		/* file's directory file handle */    fattr	 fileAttr;		/* file's attributes */    unsigned int mode;			/* (O_RDONLY, O_WRONLY, O_RDWR) */    unsigned int fileCurByte;		/* number of current byte in file */    SEM_ID	 nfsFdSem;		/* accessing semaphore */    BOOL	 cacheValid;		/* TRUE: cache valid and remaining */					/* fields in structure are valid. */					/* FALSE: cache is empty or */					/* cacheCurByte not the same as the */					/* current byte in the file. */    char	*cacheBuf;		/* pointer to file's read cache */    char 	*cacheCurByte;		/* pointer to current byte in cache */    unsigned int cacheBytesLeft;	/* number of bytes left in cache */					/* between cacheCurByte and the end */					/* of valid cache material.  NOTE: */					/* This number may be smaller than */					/* the amount of room left in for */					/* the cache writing. */    BOOL	 cacheDirty;		/* TRUE: cache is dirty, not flushed */    } NFS_FD;/* globals */int mutexOptionsNfsDrv = SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE;unsigned int nfsCacheSize;		/* size of an nfs cache */BOOL	 nfsAutoClose;			/* TRUE: close client after file close*//* locals */LOCAL int nfsDrvNum;			/* this particular driver number *//* forward declarations */LOCAL int nfsCacheFlush ();LOCAL STATUS nfsClose ();LOCAL int nfsCreate ();LOCAL int nfsDelete ();LOCAL int nfsIoctl ();LOCAL int nfsOpen ();LOCAL int nfsRead ();LOCAL int nfsSeek  ();LOCAL int nfsWrite ();LOCAL int nfsChkFilePerms ();/********************************************************************************* nfsDrv - install the NFS driver** This routine initializes and installs the NFS driver.  It must be * called before any reads, writes, or other NFS calls.* This is done automatically when INCLUDE_NFS is defined.** VXWORKS AE PROTECTION DOMAINS* Under VxWorks AE, you can call this function from within the kernel * protection domain only.  This restriction does not apply under non-AE * versions of VxWorks.  ** RETURNS:* OK, or ERROR if there is no room for the driver.*/STATUS nfsDrv (void)    {    if (nfsDrvNum == 0)	{	nfsCacheSize = nfsMaxMsgLen;	nfsDrvNum = iosDrvInstall (nfsCreate, nfsDelete, nfsOpen, nfsClose,				   nfsRead, nfsWrite, nfsIoctl);	}    return (nfsDrvNum == ERROR ? ERROR : OK);    }/********************************************************************************* nfsDrvNumGet - return the IO system driver number for the nfs driver** This routine returns the nfs driver number allocated by iosDrvInstall during* the nfs driver initialization. If the nfs driver has yet to be initialized,* or if initialization failed, nfsDrvNumGet will return ERROR.** RETURNS: the nfs driver number or ERROR*/int nfsDrvNumGet (void)    {    return (nfsDrvNum == 0 ? ERROR : nfsDrvNum);    }/********************************************************************************* nfsMount - mount an NFS file system** This routine mounts a remote file system.  It creates a* local device <localName> for a remote file system on a specified host.* The host must have already been added to the local host table with* hostAdd().  If <localName> is NULL, the local name will be the same as* the remote name.** RETURNS: OK, or ERROR if the driver is not installed,* <host> is invalid, or memory is insufficient.** SEE ALSO: nfsUnmount(), hostAdd()*/STATUS nfsMount    (    char *host,         /* name of remote host */    char *fileSystem,   /* name of remote directory to mount */    char *localName     /* local device name for remote dir */                        /* (NULL = use fileSystem name) */    )    {    FAST NFS_DEV *pNfsDev;    nfs_fh fileHandle;    if (nfsDrvNum < 1)	{	errnoSet (S_ioLib_NO_DRIVER);	return (ERROR);	}    if (strlen (fileSystem) >= nfsMaxPath)	{	errnoSet (S_nfsLib_NFSERR_NAMETOOLONG);	return (ERROR);	}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
xf在线a精品一区二区视频网站| 国产裸体歌舞团一区二区| 国产欧美视频一区二区| 婷婷一区二区三区| 亚洲男人的天堂网| 欧美经典三级视频一区二区三区| 国产欧美一区二区精品秋霞影院| 日韩视频免费观看高清完整版 | 亚洲一区二区三区影院| 黄色日韩三级电影| 蜜臀av性久久久久av蜜臀妖精| 婷婷久久综合九色综合伊人色| 亚洲成人动漫在线观看| 麻豆视频一区二区| 国产69精品久久久久毛片 | 亚洲午夜激情av| 精品一区精品二区高清| 亚洲综合一二区| 一区二区三区蜜桃网| 亚洲免费色视频| 欧美一级在线视频| 成人激情av网| 国产一区二区三区黄视频| 国产真实乱偷精品视频免| 国产一区在线视频| 蜜桃av一区二区三区电影| 91麻豆精品在线观看| 91精品国产综合久久久久久久| 日韩一级二级三级精品视频| 中文字幕免费观看一区| 风间由美中文字幕在线看视频国产欧美| 欧美一区二区三区视频免费播放 | 7777精品伊人久久久大香线蕉的| 国产精品一区二区91| 国产美女精品人人做人人爽| 一本久久a久久免费精品不卡| 欧美国产一区二区在线观看| 午夜精品免费在线观看| 成人精品小蝌蚪| 国产欧美日韩在线| 免费久久精品视频| 欧美一区二区三区视频免费| 日韩影院免费视频| 欧美日韩三级一区二区| 亚洲成人自拍网| 欧美在线一区二区| 亚洲第一精品在线| 欧美一区二区三区日韩视频| 奇米777欧美一区二区| 欧美zozo另类异族| 国产aⅴ综合色| 亚洲欧洲av另类| 一本色道a无线码一区v| 亚洲成人免费在线| 欧美精品一区二区精品网| 国产成人精品免费网站| 国产拍欧美日韩视频二区| 国产精品一区二区三区网站| 2023国产精品视频| 色激情天天射综合网| 亚洲成在人线在线播放| 久久免费电影网| 欧美午夜精品电影| 国产91在线观看| 亚洲mv在线观看| 国产欧美日韩亚州综合| 日韩欧美123| 久久99精品久久久久久久久久久久| 一区二区三区精品| 亚洲伊人色欲综合网| 日韩专区一卡二卡| 奇米一区二区三区| 午夜欧美一区二区三区在线播放| 亚洲制服丝袜在线| 麻豆91在线看| 国产99精品国产| 欧洲激情一区二区| 日韩久久久久久| 亚洲欧洲成人自拍| 男人操女人的视频在线观看欧美 | 免费xxxx性欧美18vr| 国产一区激情在线| 色综合久久天天| 26uuu亚洲综合色| 日本久久电影网| 国产91富婆露脸刺激对白| 久久av中文字幕片| 国产电影精品久久禁18| 丁香婷婷综合五月| 91论坛在线播放| 在线播放中文字幕一区| 日韩免费观看高清完整版| 久久久久国色av免费看影院| 亚洲精品一线二线三线| 国产精品久久二区二区| 国产精品久久久久aaaa| 亚洲精品日韩综合观看成人91| 亚洲六月丁香色婷婷综合久久 | 日韩电影一二三区| 国产精品一区二区三区乱码| 国产麻豆精品theporn| 色婷婷激情久久| 日韩一区二区影院| 自拍偷在线精品自拍偷无码专区| 亚洲激情综合网| 国产麻豆视频一区二区| 在线一区二区三区做爰视频网站| 8v天堂国产在线一区二区| 国产精品视频免费| 美女一区二区久久| 在线亚洲欧美专区二区| 精品国产乱码久久| 日韩中文字幕区一区有砖一区| 国产麻豆成人精品| 日韩免费看的电影| 亚洲不卡在线观看| 欧美图区在线视频| 亚洲成人黄色影院| 91麻豆免费观看| 欧美性生活一区| 91精品国产一区二区| 精品久久久久一区| 久久一夜天堂av一区二区三区| 精品国产乱码久久久久久老虎| 亚洲欧美国产77777| 亚洲综合区在线| 高清不卡一区二区| 精品国产欧美一区二区| 免费成人在线观看| 欧美一区二区三区色| 日韩黄色小视频| 777a∨成人精品桃花网| 丝袜美腿高跟呻吟高潮一区| 日本精品视频一区二区| 亚洲h动漫在线| 欧美一区二区三区婷婷月色| 日韩国产精品久久久久久亚洲| 精品视频999| 黄一区二区三区| 中文字幕高清一区| 粗大黑人巨茎大战欧美成人| 国产精品妹子av| 欧美亚洲尤物久久| 久久国产日韩欧美精品| 久久理论电影网| 91麻豆免费视频| 美日韩一级片在线观看| 中文一区二区完整视频在线观看 | 欧美亚洲精品一区| 极品少妇一区二区| 亚洲精品国产一区二区三区四区在线| 欧美性色黄大片手机版| 久久99精品国产.久久久久久 | 亚洲欧洲精品一区二区精品久久久| 国产成人午夜电影网| 亚洲乱码日产精品bd| 91精品国产综合久久久久久久久久| 亚洲一区二区在线观看视频| 日韩三级视频在线观看| av一二三不卡影片| 国产精品久久久久久福利一牛影视| eeuss鲁片一区二区三区| 中文字幕日韩精品一区| 欧美性大战xxxxx久久久| 免费观看91视频大全| 椎名由奈av一区二区三区| 在线观看不卡一区| 风流少妇一区二区| 免费观看30秒视频久久| 一区二区三区视频在线观看| 日韩三级av在线播放| 在线一区二区三区四区| 风间由美性色一区二区三区| 天堂一区二区在线| 亚洲永久免费视频| 日韩久久免费av| 欧美高清你懂得| 欧美老年两性高潮| 在线观看免费成人| 91久久国产最好的精华液| 国产在线观看免费一区| 轻轻草成人在线| 美女在线视频一区| 日韩高清不卡一区| 麻豆精品蜜桃视频网站| 日本午夜精品一区二区三区电影| 亚洲欧洲精品一区二区三区 | 国产精品久久久久久一区二区三区 | 青青草91视频| 蜜桃久久精品一区二区| 美脚の诱脚舐め脚责91| 久久精品国产99| 国产精品一区二区在线观看网站 | 亚洲午夜av在线| 亚洲aaa精品| 日韩成人dvd| 日本亚洲最大的色成网站www| 日韩av一区二| 精品一区二区三区蜜桃| 国产毛片精品视频|