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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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);	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本视频一区二区| 成人国产精品免费观看| 国产精品一区久久久久| 99r国产精品| 精品毛片乱码1区2区3区| 国产精品短视频| 久久国产日韩欧美精品| 一本高清dvd不卡在线观看| 717成人午夜免费福利电影| 中文字幕一区二区三区在线观看| 日韩不卡一区二区三区 | 久久国产综合精品| caoporen国产精品视频| 日韩视频永久免费| 亚洲一区二区三区四区中文字幕 | 欧美精品一区二区高清在线观看| 亚洲欧美成aⅴ人在线观看| 国产激情一区二区三区| 欧美年轻男男videosbes| 国产精品久久三| 国产精品一二二区| 欧美大片国产精品| 日韩专区一卡二卡| 欧美日韩专区在线| 夜夜精品浪潮av一区二区三区 | 久久国产福利国产秒拍| 欧美亚洲一区二区在线| 亚洲另类在线一区| 成年人国产精品| 国产精品久99| 91在线观看下载| 国产精品美女一区二区| 成人免费视频视频| 国产精品久久久久久久久搜平片| 国产在线视频一区二区| 精品国精品国产| 国产一区999| 国产亚洲一二三区| 国产999精品久久久久久| 久久综合九色综合97婷婷女人 | 久久久久久久综合色一本| 另类人妖一区二区av| 欧美哺乳videos| 久久99国产精品免费| 欧美mv日韩mv国产| 国产一区二区三区在线观看精品 | 一区二区在线观看av| 一本大道久久a久久精二百| 亚洲精品一二三四区| 欧美视频在线一区二区三区| 亚洲图片欧美视频| 91精品婷婷国产综合久久| 美女视频黄免费的久久| 久久众筹精品私拍模特| av男人天堂一区| 亚洲在线中文字幕| 日韩欧美自拍偷拍| 国产成人鲁色资源国产91色综| 国产精品视频在线看| 色一情一伦一子一伦一区| 午夜a成v人精品| 日韩女优制服丝袜电影| av激情亚洲男人天堂| 日韩成人午夜电影| 欧美国产一区在线| 欧美日韩一区二区三区不卡| 国产一区二区不卡| 亚洲第一精品在线| 久久亚洲影视婷婷| 色先锋久久av资源部| 美女视频黄a大片欧美| 中文字幕一区二区在线播放 | 国产精品高潮呻吟| 欧美精品在线观看一区二区| 国产伦精一区二区三区| 亚洲精品视频免费观看| 精品av综合导航| 欧美亚洲综合网| 成人免费视频caoporn| 日韩高清欧美激情| 国产精品国产自产拍高清av | 久久精品在线观看| 欧美性做爰猛烈叫床潮| 国产一区二区导航在线播放| 一区二区三区精品| 中文字幕一区二区在线观看| 日韩精品一区二区在线| 欧美午夜在线观看| 不卡的av网站| 国产精品影视网| 青娱乐精品视频| 亚洲午夜av在线| 亚洲天堂2014| 久久久精品欧美丰满| 欧美日韩www| 色综合久久久久综合体桃花网| 国产精品影视天天线| 久久精品免费看| 丝袜亚洲另类欧美| 一区二区日韩av| 亚洲黄色性网站| 亚洲色图在线视频| 国产精品全国免费观看高清 | 成人app网站| 国产99一区视频免费| 国产综合久久久久影院| 蓝色福利精品导航| 日韩国产在线一| 亚洲成人先锋电影| 亚洲一二三区视频在线观看| 伊人夜夜躁av伊人久久| 成人欧美一区二区三区1314| 国产亚洲精品aa| 国产欧美综合在线观看第十页| 精品国产91亚洲一区二区三区婷婷| 欧美自拍丝袜亚洲| 欧美视频在线不卡| 欧美日韩久久久久久| 欧美三级中文字幕| 欧美妇女性影城| 欧美一级生活片| 精品久久人人做人人爽| 欧美精品一区二| 亚洲国产精品精华液2区45| 国产日韩精品一区二区三区在线| 久久精品无码一区二区三区| 亚洲国产精品传媒在线观看| 国产精品初高中害羞小美女文| 欧美国产日韩在线观看| 中文字幕一区二区三区色视频| 国产精品电影院| 亚洲成人免费视| 麻豆精品新av中文字幕| 国产精品77777| 99国产精品一区| 欧美日本一区二区在线观看| 91精品国产品国语在线不卡| 久久婷婷国产综合国色天香| 国产日韩欧美不卡| 一区二区三区在线视频播放| 日产国产欧美视频一区精品| 久久国产精品99精品国产 | 欧美性猛片xxxx免费看久爱| 欧美三级中文字幕在线观看| 精品国产一区二区精华| 国产精品―色哟哟| 亚洲va欧美va人人爽| 国产一区二区三区精品视频| 91网站在线播放| 日韩欧美久久久| 自拍偷拍欧美精品| www.成人在线| 91精品欧美福利在线观看| 久久久久国产一区二区三区四区| 亚洲色图欧美激情| 毛片一区二区三区| 91在线无精精品入口| 欧美变态凌虐bdsm| 亚洲最大色网站| 国产精品亚洲一区二区三区在线| 色爱区综合激月婷婷| 欧美tickling挠脚心丨vk| 亚洲女人****多毛耸耸8| 免费成人性网站| 在线免费一区三区| 日本一区二区三级电影在线观看| 午夜激情一区二区| 波多野洁衣一区| 日韩精品一区二区在线| 亚洲影视在线观看| 成人美女在线观看| 日韩三级高清在线| 亚洲国产成人精品视频| 波多野结衣亚洲| 久久综合九色欧美综合狠狠| 五月天亚洲婷婷| 色偷偷88欧美精品久久久| 日本一区二区免费在线| 日本 国产 欧美色综合| 在线视频中文字幕一区二区| 国产精品理论片在线观看| 国内精品伊人久久久久av影院| 正在播放一区二区| 亚洲影院理伦片| 欧美亚洲自拍偷拍| 亚洲男女一区二区三区| 不卡视频在线观看| 欧美国产丝袜视频| 大美女一区二区三区| 久久综合网色—综合色88| 奇米一区二区三区av| 欧美一区二区视频观看视频| 亚洲午夜一区二区三区| 91久久国产最好的精华液| 中文字幕在线一区免费| 国产69精品久久99不卡| 久久精品欧美日韩| 国产精品一级在线| 国产拍欧美日韩视频二区| 粉嫩13p一区二区三区|