82
Distributed File Systems NFS AFS SMB

Distributed File Systems NFS AFS SMB. DFS PREVIEW

Embed Size (px)

Citation preview

Page 1: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Distributed File Systems

NFSAFSSMB

Page 2: Distributed File Systems NFS AFS SMB. DFS PREVIEW

DFS PREVIEW

http://en.wikipedia.org/wiki/Network_file_system

Page 3: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Distributed File Systems(DFS)

Any computer file system that supports sharing of files and other resources as persistent storage over a computer network First file servers were developed in the 1970s Network File System (NFS)

Created at Sun Microsystems 1985 First widely used distributed file system

Other notable distributed file systems Andrew File System (AFS) Server Message Block SMB

AKA CIFS

Page 4: Distributed File Systems NFS AFS SMB. DFS PREVIEW

DISTRIBUTION

Page 5: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Distribution Distributed File System (DFS)

Network file system with: Clients, servers, and storage devices Spread throughout the machines of a

distributed system or intranet Service activity occurs across the network

System has multiple and independent storage devices

Some DFS servers run on dedicated machines Some machines can be both a server and a client

A DFS can be implemented: As part of a distributed operating system By a software layer

Managing the communication between conventional operating systems and file systems

Page 6: Distributed File Systems NFS AFS SMB. DFS PREVIEW

DistributionDistinctive feature of a DFS:

System withmany - and -autonomous

Clients and Servers

Page 7: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Note: NFS is a DFS for the Unix family

Network File System Originated in the Unix world Implimentions on other OSes

NFS is sometimes used as a synonym for DFS Be careful of the distinction

Page 8: Distributed File Systems NFS AFS SMB. DFS PREVIEW

TRANSPARENCY

Page 9: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Transparency A DFS should appear to its users to be the

same as a conventional, centralized file system Multiplicity and dispersion of its servers and

storage devices should be invisible Client interface used by programs should not

distinguish between local and remote files DFS locates the files and arranges the

transport of data

Page 10: Distributed File Systems NFS AFS SMB. DFS PREVIEW

PERFORMANCE

Page 11: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Performance Most important performance measurement of a

DFS: Amount of time needed to satisfy service requests

Typical performance constraints: Conventional file systems (local drives):

Disk-access time Small amount of CPU-processing time

DFS: Additional overhead due to the distributed structure Includes:

Time to deliver the request to a server Time to deliver the response to the client For each direction, a CPU overhead of running the

communication protocol software

Page 12: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Performance Performance of DFS can be viewed as one

dimension of its transparency Ideally, it would be comparable to that of a

conventional file system

Page 13: Distributed File Systems NFS AFS SMB. DFS PREVIEW

CONCURRENT FILE UPDATES

Page 14: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Concurrent file updates DFS should allow

Multiple client processes On multiple machines Access and update the same files

Updates to the file from one client should not interfere with access and updates from other clients

Concurrency control or locking may be: Built into the file system Provided by an add-on protocol

Page 15: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Sample Distributed File Systems Client-server file systems

9P Amazon S3 Coda Secure File System (SFS) Self-certifying File System (SFS)

Page 16: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Sample Distributed File Systems Distributed file systems

Andrew File System (AFS), OpenAFS DCE Distributed File System

Remote file access protocol used with the Distributed Computing Environment

Google File System File system that is optimized for Google's core storage needs

Hadoop Java software framework that supports distributed applications running on

large clusters of commodity computers Kosmos FS

High performance distributed file system. It is also integrated with hadoop.

Lustre Distributed file system for large scale cluster computing

Microsoft Distributed File System Set of client and server services for organizing many distributed SMB file

shares into a distributed file system GlusterFS

Platform for developing clustering applications Parallel Virtual File System

Parallel file system that focuses on high performance access to large data sets

Page 17: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Network File Systems

Page 18: Distributed File Systems NFS AFS SMB. DFS PREVIEW

NFS PROTOCOL

http://en.wikipedia.org/wiki/Network_File_System_%28protocol%29

Page 19: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Network File System Protocol Network file system protocol:

Allows a user on a client computer to access files over a network

As if the network devices were attached to its local disks Originally developed by Sun Microsystems in 1984

NFS builds on Open Network Computing Remote Procedure Call system ONC RPC

Network File System protocol specified in: RFC 1094 RFC 1813 RFC 3530 (which obsoletes RFC 3010)

Page 20: Distributed File Systems NFS AFS SMB. DFS PREVIEW

VERSIONS AND VARIATIONS

Page 21: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Version 1

Used only for Sun in-house experimental purposes

Not released to public

Page 22: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Version 2

Originally operated entirely over UDP Defined in RFC 1094

March 1989 Designers meant to keep the protocol stateless

Locking (for example) implemented outside of the core protocol

Page 23: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Version 3 (RFC 1813, June 1995) added:

Support for 64-bit file sizes and offsets Handle files larger than 4 gigabytes (GB)

Support for asynchronous writes on the server Improve write performance

Additional file attributes in many replies Avoid the need to re-fetch them

READDIRPLUS operation Get file handles and attributes Along with file names when scanning a directory

Assorted other improvements

Page 24: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations At the introduction of Version 3

Vendor support for TCP as a transport-layer protocol began increasing

Several vendors had already added support for NFS Version 2 with TCP as a transport

Sun Microsystems added support for TCP as a transport for NFS at the same time it added support for Version 3

Using TCP as a transport made using NFS over a WAN more feasible

Page 25: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Version 4

First version developed with the IETF After Sun Microsystems handed over the

development of the NFS protocols

Page 26: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Version 4 includes:

Performance improvements Mandates strong security Introduces a stateful protocol

Defined by RFC 3010, December 2000 Revised in RFC 3530, April 2003

Page 27: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations Various side-band protocols have become

associated with NFS, including: Byte-range advisory Network Lock Manager

(NLM) protocol Added to support UNIX System V file-locking APIs

Remote quota reporting (RQUOTAD) protocol Allow NFS-users to view their data-storage quotas on

NFS servers

Page 28: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and variations WebNFS

Allows NFS to Integrate more easily into Web-browsers Enable operation through firewalls

Was an extension to Version 2 and Version 3 Sun Microsystems open sourced their

WebNFS implementation via https://yanfs.dev.java.net/

Page 29: Distributed File Systems NFS AFS SMB. DFS PREVIEW

PLATFORMS

Page 30: Distributed File Systems NFS AFS SMB. DFS PREVIEW

PlatformsNFS

Most commonly used with UNIXOther software platforms:

Mac OSMicrosoft WindowsNovell NetWareIBM AS/400

Page 31: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Platforms Alternative remote file access protocols include

Server Message Block (SMB) protocol Also known as CIFS

Apple Filing Protocol (AFP) NetWare Core Protocol (NCP) OS/400 File Server file system (QFileSvr.400)

Note: SMB and NetWare Core Protocol (NCP) are most common

on Microsoft Windows AFP is most common on (old) Macintosh systems QFileSvr.400 is most common on AS/400 systems

Page 32: Distributed File Systems NFS AFS SMB. DFS PREVIEW

TYPICAL IMPLEMENTATION

Page 33: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Typical implementation Unix-style scenario:

Client Requires access to data

Server Servers data

Page 34: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Typical implementation Server Side

Server NFS daemon (nfsd) Make data generically available to clients

Server administrator Determines what resources to make available

Exporting names and parameters of directories Typically using the

/etc/exports configuration file exportfs command

Server security-administration Recognizes and approves validated clients

Server network configuration Lets appropriate clients can negotiate with it through any

firewall system

Page 35: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Typical implementation Client Side

Client machine Requests access to exported data Issues a mount command

Users on the client machine View and interact with mounted file systems on the server Within the parameters permitted

Note: automating the NFS mounting process is typical E.g. using /etc/fstab and/or automounting facilities

Page 36: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Resume 3/25

Page 37: Distributed File Systems NFS AFS SMB. DFS PREVIEW

NFS PROTOCOL DEVELOPMENT VERSUS

COMPETING PROTOCOLS

Page 38: Distributed File Systems NFS AFS SMB. DFS PREVIEW

NFS Protocol development versus competing protocols 1980s

NFS and ONC figured prominently in the network-computing war between Sun Microsystems and Apollo Computer, and later the UNIX wars (ca 1987-1996) between AT&T and Sun on one side, and Digital Equipment, HP, and IBM on the other.

During the development of the ONC protocol (called SunRPC at the time), only Apollo's Network Computing System (NCS) offered comparable functionality. Two competing groups developed over fundamental differences in the two remote procedure call systems. Arguments focused on the method for data-encoding — ONC's External Data Representation (XDR) always rendered integers in big-endian order, even if both peers of the connection had little-endian machine-architectures, whereas NCS's method attempted to avoid byte-swap whenever two peers shared a common endianness in their machine-architectures. An industry-group called the Network Computing Forum formed (March 1987) in an (ultimately unsuccessful) attempt to reconcile the two network-computing environments.

Later, Sun and AT&T announced that the two firms would jointly develop AT&T's next version of UNIX: System V Release 4. This caused many of AT&T's other licensees of UNIX System V to become concerned that this would put Sun in an advantaged position, and it ultimately led to Digital Equipment, HP, IBM, and others forming the Open Software Foundation (OSF) in 1988. Ironically, Sun and AT&T had previously competed over Sun's NFS versus AT&T's Remote File System (RFS), and the quick adoption of NFS over RFS by Digital Equipment, HP, IBM, and many other computer vendors tipped the majority of users in favor of NFS.

OSF solicited the proposals for various technologies, including the remote procedure call (RPC) system and the remote file access protocol. In the end, proposals for these two requirements, called respectively, the Distributed Computing Environment (DCE), and the Distributed File System (DFS) won over Sun's proposed ONC and NFS. DCE derived from a suite of technologies, including NCS and Kerberos. DFS used DCE as the RPC and derived from AFS.

Page 39: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Protocol development versus competing protocols 1990s

Sun Microsystems and the Internet Society (ISOC) reached an agreement to cede "change control" of ONC RPC so that ISOC's engineering-standards body, the Internet Engineering Task Force (IETF), could publish standards documents (RFCs) documenting the ONC RPC protocols and could extend ONC RPC. OSF attempted to make DCE RPC an IETF standard, but ultimately proved unwilling to give up change-control. Later, the IETF chose to extend ONC RPC by adding a new authentication flavor, RPCSEC GSS, in order to meet IETF's requirements that protocol standards have adequate security.

Later, Sun and ISOC reached a similar agreement to give ISOC change control over NFS, although writing the contract carefully to exclude NFS version 2 and version 3. Instead, ISOC gained the right to add new versions to the NFS protocol, which resulted in IETF specifying NFS version 4 in 2003.

2000s By the 21st century, neither DFS nor AFS had achieved any major commercial

success as compared to CIFS or NFS. IBM, which had previously acquired the primary commercial vendor of DFS and AFS, Transarc, donated most of the AFS source code to the free software community in 2000. The OpenAFS project lives on. In early 2005, IBM announced end of sales for AFS and DFS.

Page 40: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Present NFSv4.1 presents new opportunities for the NAS community

Primary addition is Parallel NFS (pNFS) A method of introducing data access parallelism

Protocol defines a method of separating the meta-data of a file system from the location of the file data

Meta-data: names and attributes Goes beyond simple name/data separation Defines method of striping the data amongst a set of data servers

Very different from the traditional NFS server Holds the names of files and their data under the single umbrella of

the server Products exist that are multi-node NFS servers

Limited participation by the client in separation of meta-data and data

NFSv4.1 client can be enabled to be a direct participant in the exact location of file data

Avoid sole interaction with the single NFS server when moving data

Page 41: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Present NFSv4.1 pNFS server:

A collection or community of server resources or components

Community members are controlled by the meta-data server

pNFS client still accesses a single meta-data server for traversal or interaction with the namespace Client moves data to and from the server

Directly interact with the set of data servers belonging to the pNFS server community

Page 42: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Present NFSv4.1 provides:

Sessions Directory Delegation and Notifications Multi-server Namespace ACL/SACL/DACL

access control lists discretionary access control list system access control list

Retention Attributions SECINFO_NO_NAME

Page 44: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Andrew File System (AFS) Distributed networked file system

Developed by Carnegie Mellon University Part of the Andrew Project

Named for Andrew Carnegie Andrew Mellon

Primary used in distributed computing

Page 45: Distributed File Systems NFS AFS SMB. DFS PREVIEW

FEATURES

Page 46: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features AFS has several benefits over traditional

networked file systems Particularly in the areas of security and scalability Not uncommon for enterprise AFS cells to exceed 50,000

clients Uses Kerberos for authentication

Implements access control lists on directories for users and groups

Each client caches files on the local file system for increased speed on subsequent requests for the same file

Allows limited file system access in the event of a server crash or a network outage

Page 47: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features Read and write operations on an open file are

directed only to the locally cached copy When a modified file is closed

Only the changed portions copied back to the file server Cache consistency maintained by callback When a file is cached

Server makes a note of this Will inform the client if the file is updated by someone else

After any client, server, or network failure (including a time-out)

Callbacks are discarded and must be re-established Re-establishing a callback involves:

Status check Does not require re-reading the file itself

Page 48: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features Consequence of the whole file locking strategy

AFS does not support large shared databases or record updating within files shared between client systems

Deliberate design decision Based on the perceived needs of the university computing

environment Leads to the use of a single file per message in the

original email system for the Andrew Project, the Andrew Message System, rather than the more customary single file per mailbox

Page 49: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features A significant feature of AFS is the volume

Tree of files Sub-directories AFS mountpoints

Links to other AFS volumes Volumes are created by administrators

Linked at a specific named path in an AFS cell Once created, users of the filesystem may create directories

and files as usual without concern for the physical location of the volume

A volume may have a quota assigned to it in order to limit the amount of space consumed. As needed, AFS administrators can move that volume to

another server and disk location without the need to notify users

Moving can occur while files in that volume are even being used

Page 50: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features AFS volumes can be replicated to read-only

cloned copies When accessing files in a read-only volume, a client

system will retrieve data from any read-only copy If a copy becomes unavailable, clients will look for any

remaining copies Users of that data are unaware of the location of the read-

only copy Administrators can create and relocate copies as needed

AFS command suite guarantees that all read-only volumes contain exact copies of the original read-write volume at the time the read-only copy was created

Page 51: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features File name space on an Andrew workstation

is partitioned into a shared and local name space Shared name space identical on all

workstations Usually mounted as /afs on the Unix file system

Local name space unique to each workstation Contains only temporary files needed for workstation

initialization and symbolic links to files in the shared name space

Page 52: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Features Andrew File System

Heavily influenced Version 4 of Sun Microsystems' NFS

Variant of AFS adopted by the Open Software Foundation

Distributed File System (DFS) Part of their Distributed computing environment

Page 53: Distributed File Systems NFS AFS SMB. DFS PREVIEW

IMPLEMENTATIONS

Page 54: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementations There were three major implementations

Transarc (IBM) Released as OpenAFS and retired

OpenAFS Arla

Transarc software is losing support and is deprecated

AFS (version two) Predecessor of the Coda file system

Fourth implementation in the Linux kernel source code since at least version 2.6.10 Committed by Red Hat

A fairly simple implementation Still in its early stages of development Incomplete

Page 55: Distributed File Systems NFS AFS SMB. DFS PREVIEW

AFS FILE PERMISSIONS

Page 56: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Available permissions The following Access Control List (ACL)

permissions can be granted: Lookup (l)

Allows users to: List the contents of the AFS directory Examine the ACL associated with the directory Access subdirectories

Insert (i) Allows users to add new files or subdirectories to the

directory Delete (d)

Allows users to remove files and subdirectories from the directory

Administer (a) Allows users to change the ACL for the directory Users always have this right on their home directory

Even if they accidentally remove themselves from the ACL

Page 57: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Available permissions Permissions that affect files and subdirectories

include: Read (r)

Allows users to look at the contents of files in a directory and list files in subdirectories

Files that are to be granted read access to any user, including the owner, need to have the standard UNIX "owner read" permission set

Write (w) Allows users to modify files in a directory Files that are to be granted write access to any user,

including the owner, need to have the standard UNIX "owner write" permission set

Lock (k) Allows the processor to run programs that need to "flock"

files in the directory See the UNIX man page for "flock" for more details

Page 58: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Available permissions AFS includes Application ACLs (A)-(H)

which have no effect on access to files ACL – Access Control Lists Affects directories only Overrides Unix permissions

Page 59: Distributed File Systems NFS AFS SMB. DFS PREVIEW

SMBhttp://en.wikipedia.org/wiki/Server_Message_Block

Page 60: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Server Message Block (SMB) Operates as an application-level network protocol

Applied to shared access to Files Printers Serial ports Miscellaneous communications

Between nodes on a network Provides an authenticated Inter-process

communication mechanism Most usage of SMB involves computers running

Microsoft Windows: Microsoft environments users often know it simply as

"Microsoft Windows Network"

Page 61: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Server Message Block (SMB) When discussing SMB, one should

distinguish: SMB the protocol SMB services that run on the protocol NetBIOS DCE/RPC services that use SMB as an

authenticated Inter-process communication channel (over named pipes)

"Network Neighborhood" protocols which primarily (but not exclusively) run as datagram services directly on the NetBIOS transport

Page 62: Distributed File Systems NFS AFS SMB. DFS PREVIEW

HISTORY

Page 63: Distributed File Systems NFS AFS SMB. DFS PREVIEW

History Barry Feigenbaum originally invented SMB at IBM

Turn DOS "Interrupt 33" (21h) local file-access into a networked file-system

Microsoft made considerable modifications to the most commonly used version Merged the SMB protocol with the LAN Manager

Developing with 3Com (circa 1990) Continued to add features to the protocol

Windows for Workgroups (circa 1992) Later versions of Windows

Page 64: Distributed File Systems NFS AFS SMB. DFS PREVIEW

History Original design of SMB envisaged it

running on top of the NetBIOS and NetBEUI APIs Typically implemented with

NBF (NetBIOS Frame) NetBIOS over IPX/SPX NBT (NetBIOS TCP/IP)

SMB can also run directly on the TCP/IP protocols

Introduced with Windows 2000

Page 65: Distributed File Systems NFS AFS SMB. DFS PREVIEW

History Circa Sun Microsystems announcing WebNFS

Microsoft launched an initiative in 1996 to rename SMB to Common Internet File System (CIFS)

Added more features, including Support for:

Symbolic links Hard links Larger file sizes Attempt at supporting direct connections without the NetBIOS

Largely experimental effort that required further refinement

Microsoft submitted some partial specifications as Internet-Drafts to the IETF Submissions have expired

Page 66: Distributed File Systems NFS AFS SMB. DFS PREVIEW

History Windows Vista

introduced Server Message Block 2.0

Page 67: Distributed File Systems NFS AFS SMB. DFS PREVIEW

History Side issue:

Samba project originated aim of Reverse engineer SMB Provide a free implementation of a compatible SMB-

client and server for use with non-Microsoft operating system

Driven by the importance of the SMB protocol in interacting with the widespread Microsoft Windows platform

Page 68: Distributed File Systems NFS AFS SMB. DFS PREVIEW

IMPLEMENTATION

Page 69: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Client-server approach

SMB works through a peer-to-peer approach Client makes specific requests Server responds accordingly

One section of the SMB protocol specifically deals with access to file systems

Clients may make requests to a file server Other sections of the SMB protocol specialize in inter-

process communication (IPC) Developers have optimized the SMB protocol for local

subnet usage Users have also put SMB to work to access different subnets

across the Internet Involving file-sharing or print-sharing in MS Windows

environments

Page 70: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Client-server approach

SMB servers make their file systems and other resources available to clients on the network

Client computers may want access to the shared file systems and printers on the server

For this primary function, SMB is best-known and most heavily used

SMB file-server aspect would count for little without the NT domains suite of protocols

Provide NT-style domain-based authentication NT Domains protocols offer MSRPC services available

almost exclusively available on SMB IPC "named pipe“ Almost all implementations of SMB servers use NT Domain

authentication to validate user-access to resources

Page 71: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Performance issues

Many people believe that the SMB protocol makes heavy use of network bandwidth because each client broadcasts its presence to the whole subnet

SMB itself does not use broadcasts Broadcast problems commonly associated with SMB actually originate with

the NetBIOS service location protocol Microsoft Windows server will use NetBIOS to advertise and locate

services NetBIOS functions by broadcasting services available on a particular

host at regular intervals. Usually ok for an acceptable default in a network with fewer than 20

hosts Broadcast traffic will cause problems as the number of hosts increases.

Proper implementation of a NetBIOS Name Server (NBNS) can mitigate this problem

Windows Internet Naming Service (WINS) offers a suitable solution in Microsoft environments.

WINS uses a much more advanced system of registration and centralized service requests

Imposes its own complexity upon the design and maintenance of the network

Microsoft recommends the use of Dynamic DNS In Microsoft Active Directory environments

Page 72: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Performance issues

Network designers should expect that network latency will have a significant impact on the performance of the SMB protocol

Monitoring reveals this mostly due to navigating among directories through SMB

When significant network latency exists between hosts For example, a VPN connection over the Internet will

often introduce network latency Can make for a frustrating experience

Page 73: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Microsoft's modifications

Microsoft has added several extensions to its own SMB implementation.

Added NT LAN Manager (NTLM) Version 2 NTLM version 1 used DES in a flawed manner

Derived from the original legacy SMB specification's requirement to use IBM "LanManager" passwords

NT 4.0 Domain Logon protocols use 40-bit encryption outside of the United States of America

Does not conform with modern security standards

Page 74: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Points of interest

SMB's "Inter-Process Communication" mechanism deserves a specific mention

SMB "IPC" system provides named pipes Provides one of the first few inter-process mechanisms

commonly available to programmers Provides a means for services to inherit the

authentication carried out when a client first connected to an SMB server

Inherited authentication in named pipes has become so ubiquitous and transparent that both Windows-users and programmers who use the Windows API often simply take it for granted

Page 75: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Points of interest

Some services that operate over named pipes also allow MSRPC client programs to perform authentication

Over-rides the authorization provided by the SMB server

Only in the context of the MSRPC client program that successfully makes the additional authentication

Page 76: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Implementation Points of interest

SMB uses opportunistic locking Special type of locking-mechanism Improves performance

SMB serves as the basis for Microsoft's Distributed File System implementation

Page 77: Distributed File Systems NFS AFS SMB. DFS PREVIEW

VERSIONS AND IMPLEMENTATIONS

Page 78: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and implementations The following list explicitly refers to "SMB" as

including an SMB client or an SMB server Including the various protocols that extend SMB For simplicity and conciseness and vagueness,

however, the list omits mention of the extent or completeness of the reimplementation or porting status for any of these implementations

Lumps them all together simply as "SMB"

Page 79: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and implementations List…

Samba includes an SMB server and a command-line SMB client Free re-implementation of the SMB protocol and of the Microsoft extensions to it

Samba TNG: a fork of Samba The Linux kernel includes two SMB client implementations that use the

Linux VFS Provides access to files on an SMB server through the standard file system API: smbfs and cifs

ONStor Inc. offers an SMB implementation that also supports NFS protocol users can access the same data through both protocols

Novell NetWare version 6 and later has a CIFS server implementation Provides access to NetWare volumes for Microsoft Network clients

FreeBSD includes an SMB client implementation smbfs that uses its VFS

NetBSD and Mac OS X include SMB client implementations: smbfs originally derived from the FreeBSD smbfs; they use the NetBSD and OS X VFS

Solaris has a project called CIFS client for Solaris Based on the Mac OS X smbfs

Sun Microsystems added in-kernel CIFS support to Solaris in October 2007 Sun Microsystems Cascade (aka PC-Netlink) represents a port of Advanced

Server for Unix Sun took over two years making the code useful, due to the poor quality of the original port

Page 80: Distributed File Systems NFS AFS SMB. DFS PREVIEW

Versions and implementations

Continued… FreeNAS runs FreeBSD for Network-attached storage (NAS) services

Supports protocols including CIFS/Samba Advanced Server for Unix (AS/U) comprises a port of Windows NT 3.51's SMB server code

to Unix Microsoft licensed the code to AT&T, which then licensed it to major Unix vendors. The poor quality of the original port (allegedly carried out by Microsoft itself) has caused any vendor sub-licensing it

significant grief VERITAS Software has an implementation of SMB SCO has a port of Advanced Server for Unix SCO has VisionFS, a Microsoft-independent re-implementation of SMB developed through

reference to Samba source code Network Appliance has an SMB server implementation Objective Development's Sharity provides an SMB file-system client for Unix The Alfresco content-management system includes a Java implementation of SMB JCIFS offers an implementation of SMB in Java RTSMB, a CIFS/SMB implementation written in ANSI C.

EBS designed RTSMB from scratch, independently of MS or SAMBA design reference, to run in embedded devices Visuality Systems NQ CIFS, a CIFS (SMB) server and client solution for embedded devices

— ported to many popular real-time operating systems (RTOSs) Thursby Software Systems offers a commercial implementation of SMB/CIFS for Mac OS

Page 81: Distributed File Systems NFS AFS SMB. DFS PREVIEW

NFS is most common on1. IBM MVS2. Linux3. Mac OS x4. Microsoft

Windows

IBM M

VSLin

ux

Mac O

S x

Micr

osoft W

indows

1%

14%

0%

85%

Page 82: Distributed File Systems NFS AFS SMB. DFS PREVIEW

SMB is most common on1. IBM MVS2. Linux3. Mac OS x4. Microsoft

Windows

IBM M

VSLin

ux

Mac O

S x

Micr

osoft W

indows

7%

88%

0%5%