54
Fundamentals of Linux Platform Security Security Training Course Dr. Charles J. Antonelli The University of Michigan 2012

Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Embed Size (px)

Citation preview

Page 1: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Fundamentals of Linux Platform Security

Security Training Course

Dr. Charles J. Antonelli The University of Michigan

2012

Page 2: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Linux Platform Security

Module 3 File Systems

Page 3: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Roadmap

•  UNIX Filesystem •  LINUX Filesystems •  NFS, AFS & NFSv4

10/12 cja 2012 3

Page 4: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

The UNIX Filesystem

Page 5: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Filesystem Concepts

•  Filesystems organize file data on permanent media

•  Filesystems create and associate file data and metadata

•  Filesystems provide secure, scalable, efficient permanent storage

10/12 5 cja 2012

Page 6: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

The UNIX Filesystem

•  In the beginning, there were two  UNIX™ File System (1971)1

  Berkeley Fast File System (1983)2

10/12 6 cja 2012

Page 7: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

After that, things got complicated

10/12 cja 2012 7

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

Page 8: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX™ File System Disk Layout

Stolen from “A Fast File System For UNIX,” Presented by Zhifei Wang

10/12 cja 2012 8

Page 9: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX™ Inodes

Inodes (“Index nodes”):

1.  File ownership

information 2.  Time Stamps for

last modification/access

3.  Array of pointers to data blocks of the underlying file

Stolen from “A Fast File System For UNIX,” Presented by Zhifei Wang

10/12 cja 2012 9

Page 10: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Berkeley Fast File System

•  Addresses performance issues by dividing a disk partition into one or more cylinder groups

Excerpted from “A Fast File System For UNIX,” Presented by Zhifei Wang

10/12 cja 2012 10

Page 11: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem Concepts

•  A (regular) file is a linear array of bytes that can be read or written starting at any byte offset in the file

•  The size of the file offset determines the absolute maximum size of any file:

10/12 11 cja 2012

Offset size, bits Maximum file size, bytes 16 216 65,536 32 232 4,294,967,296 64 264 1.84e+19

128 2128 3.40e+38

Page 12: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem Concepts

•  File names are stored in a file called a directory •  Directories may refer to other directories as well

as to files •  A hierarchy of these directories is called a

filesystem •  Each filesystem tree (a connected graph with

no cycles) has a single topmost root directory •  Hardware devices are represented as special

files •  A UNIX mantra: everything is a file

10/12 cja 2012 12

Page 13: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem Concepts

•  The root of one filesystem may be mounted on a mount point of another filesystem

•  The user sees one aggregated filesystem with one root, while the operating system manages several logical filesystems, each on a different device

•  A filesystem device may be physical permanent storage, a portion of same, an aggregation of same (a logical volume), a remote filesystem, physical volatile storage, or a file stored in another filesystem

10/12 13 cja 2012

Page 14: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Absolute vs. relative path names

•  A file is accessed using its path name •  Absolute path name

  /dir1/dir2/…/dirn/filename    /opt/moab/etc/moab.cfg  

•  Relative path name   current-­‐working-­‐directory/filename    moab.cfg  

•  Every process maintains a notion of a current working directory   Initialized at login from /etc/passwd home directory field   Changed  via  chdir() system call  

10/12 14 cja 2012

Page 15: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem Implementation

•  An inode (index node) contains bookkeeping information about each file. Inode numbers are unique to a filesystem

•  A hard link is a directory entry which contains the target file’s inode

•  A symbolic link is a directory entry which contains the inode of a special file containing the path name to the target file

10/12 15 cja 2012

Page 16: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Directories

•  A special file which maps names to inode numbers

•  There are always 2 hard links   . (dot) is self-referential   .. (dotdot) refers to the parent directory

•  File permissions are stored in the inode, and not the directory

10/12 16 cja 2012

Page 17: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Directories

•  A hard link results in two (or more) directory entries that point to the same inode   Can’t hard link directories   Can’t cross filesystem boundary   Identical permissions for different links

•  A soft link is a separate directory entry whose file contains a pathname   Can soft link directories

 Now it’s a filesystem graph   Can cross filesystem boundary   Separate permissions for different links   “Dangling softlink” if pointed-to file is deleted

10/12 17 cja 2012

Page 18: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

File Permissions I

•  Three permission bits, aka mode bits   Files: Read, Write, Execute   Directories: List, Modify, Search

•  Three user classes   User (File Owner), File Group, Other

10/12 18 cja 2012

Page 19: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

File Permissions, examples

-­‐rwxr-­‐xr-­‐x  cja  lsait file read, write, and execute rights for the owner, read and execute for others

-­‐rwsr-­‐x-­‐-­‐x  cja  lsait same permissions as above, but on exec()  the process will run with cja’s credentials

drwxr-­‐x-­‐-­‐x  cja  lsait list, modify, and search for the owner, list and search for group, and execute only for others

10/12 19 cja 2012

Page 20: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

File Permissions II

•  Three special bits:   Setuid  Executable has file owner’s user id, not invoker’s

  Setgid  Executable has file group’s group id, not invoker’s

  Sticky  Directory: only owner of the directory or of a file it

contains can delete or rename the file

10/12 20 cja 2012

Page 21: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

File Permissions, intermezzo

•  Given -­‐rw-­‐r-­‐-­‐r-­‐x  cja  lsait

Assume user foo is also in group lsait. What rights would foo have to this file?

10/12 21 cja 2012

Page 22: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem

The UNIX filesystem buffer cache improves performance while maintaining “UNIX semantics”

  Write changes seen by subsequent readers   File reads obviate disk reads if the data are already

buffered   File writes are buffered but not immediately written to

disk   Metadata writes are ordered and written

synchronously to enable fsck to function correctly

10/12 22 cja 2012

Page 23: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

UNIX Filesystem

This buffering is a potential source of file system inconsistency, since the filesystem state on disk can differ from the in-memory filesystem state

If the operating system crashes, you will lose the in-memory state

The fsck utility restores disk filesystem consistency

But the time taken is proportional to the filesystem size, regardless of activity

10/12 23 cja 2012

Page 24: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Linux Filesystems

Page 25: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Create an ext4 filesystem

 1. mkdir  ~/fs;  cd  ~/fs  2. dd  if=/dev/zero  of=mydev  bs=`expr  1024  \*  1024`  count=100  3. mkfs  -­‐F  -­‐t  ext4  mydev  4. mkdir  mymnt  5. sudo  mount  -­‐o  acl,loop  mydev  mymnt  6. dumpe2fs  mydev  

10/12 cja 2012 25

Page 26: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Linux ext4

•  Fourth extended filesystem  Minix (pre-1992)   ext (1992)   ext2 (1993)   ext3 (2001)   ext4 (2008)

10/12 cja 2012 26

Page 27: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Minix fs

•  Toy filesystem, used for teaching •  14-character file names •  16-bit file offsets

  => 64 MB maximum file size

10/12 cja 2012 27

Page 28: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext

•  First Linux filesystem to use VFS API •  255-character file names •  32-bit file offsets

  => 2 GB maximum file size

10/12 cja 2012 28

Page 29: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Linux block mapping

10/12 cja 2012 29

Cao et al, Ottawa Linux Symposium, 2005.

Page 30: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext2

•  Re-implementation of ext  With ideas from Berkeley FFS

•  255-character file names •  64-bit file offsets

  => 264 GB theoretical maximum file size  Really 16 GB and up, depends on file

system block size and block pointer size

10/12 cja 2012 30

Page 31: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

•  Journaling  Data and/or metadata are written to the

journal before being committed   After a crash, the journal is replayed at boot

to restore filesystem consistency   => replay time depends on level of activity in

a filesystem and not its size

10/12 cja 2012 31

Page 32: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

•  Journaling levels   Journal: data and metadata journaled

(slowest, safest)  Ordered: metadata journaled, data writes

completed before entry committed to journal, à la fsck (faster, safer, default)

 Writeback: metadata journaled, data writes unsynchronized (fastest, riskiest)

10/12 cja 2012 32

/home/cja/fs/mydev on /home/cja/fs/mymnt type ext4 (rw,noatime,loop=/dev/loop0,acl,data=writeback,barrier=0)

Page 33: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

10/12 cja 2012 33

Prabhakaran et al 2005, Proc. USENIX Annual Conference

Page 34: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Compare journaling performance

1.  cd  ~/fs/mymnt  2.  time  for  f  in  `seq  1  50`;  do  for  g  in  `seq  1  50`;  do  

mkdir  $f.$g;  done  done;  time  for  f  in  `seq  1  50`;  do  for  g  in  `seq  1  50`;  do  rmdir  $f.$g;  done  done  

3.  cd  ..  4.  sudo  umount  mymnt  5.  sudo  mount  mydev  mymnt  -­‐o  acl,loop  -­‐o  

data=writeback,noatime,barrier=0  6.  cd  mymnt  7.  time  for  f  in  `seq  1  50`;  do  for  g  in  `seq  1  50`;  do  

mkdir  $f.$g;  done  done;  time  for  f  in  `seq  1  50`;  do  for  g  in  `seq  1  50`;  do  rmdir  $f.$g;  done  done  

10/12 cja 2012 34

Page 35: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

•  Access control lists   Access may be controlled for arbitrary users

and groups  No longer limited to user,group,other

  Set for files and directories  Directories may have default ACLs  ACLs are inherited

 Discretionary

10/12 cja 2012 35

Page 36: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Manipulate ACLs

1.  cd  ~/fs/mymnt  2.  mkdir  foo;  cd  foo;  echo  bar>bar;  ls  -­‐la      #  notice  mode  bits  end  with  .  3.  getfacl  bar                                                              #  no  acls  on  bar,  just  mode  bits  4.  setfacl  -­‐m  u:cja:r  bar                                        #  set  an  acl  on  a  file  5.  getfacl  bar                                                              #  user  cja  has  read  rights  6.  echo  baz>baz                                                            #  create  a  file  7.  getfacl  baz                                                              #  user  cja  has  no  read  rights  8.  ls  -­‐l                                                                          #  mode  bits  with  acls  end  with  +  9.  setfacl  -­‐d  -­‐m  u:tcpdump:rx  .                            #  assign  default  acl    10.  getfacl  .                                                                  #  see  what  it  looks  like  11.  echo  quux>quux                                                          #  create  a  file  12.  getfacl  quux                                                            #  user  cja  has  read  rights  13.  mkdir  qqsv                                                                #  make  a  subdirectory  14.  getfacl  qqsv                                                            #  it  inherits  the  default  rights  15.  cd  qqsv                                                                      #  enter  the  new  subdirectory  16.  echo  foo>foo                                                            #  create  another  file  17.  getfacl  foo                                                              #  user  cja  has  read  rights  

10/12 cja 2012 36

Page 37: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

•  HTree indexing of directory names   Linear search suffers O(n) performance   B-trees allow O(log2n) search/insert/delete

but need balancing and require complex algorithms

 HTrees have similar benefits but simpler to implement  Hash, high fanout, constant depth  No balancing required

10/12 cja 2012 37

Page 38: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext3

•  File system online growth  Can increase (and decrease) filesystem size

without reboot •  Backwards-compatible with ext2

  ext3 can mount ext2 filesystems   ext2 forward compatible in some cases

10/12 cja 2012 38

Page 39: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

Resize a filesystem

1.  cd  ~/uniqname  2.  sudo  umount  mymnt  3.  cat  mydev  mydev  >bigdev  4.  sudo  mount  bigdev  mymnt  5.  df  -­‐kh  mymnt  

…  verify  filesystem  is  still  100  MB  in  size  6.  sudo  umount  mymnt  7.  e2fsck  -­‐f  bigdev  8.  resize2fs  bigdev  9.  sudo  mount  bigdev  mymnt  10.  df  -­‐kh  mymnt  

10/12 cja 2012 39

Page 40: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext4

•  1 EB maximum filesystem size •  16 TB maximum file size •  64,000 maximum directory entries •  Extents for contiguous allocation

  128 MB extent with 4 KB block size •  Backwards-compatible with ext3 & ext2

  Ext3 forwards-compatible in some cases

10/12 cja 2012 40

Page 41: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

ext4

•  Persistent pre-allocation   Pre-allocate contiguous space   Media streaming, databases

•  Nanosecond-granularity timestamps   Date-of-creation timestamp, filesystem only

•  relatime option   Only updates atime if old atime older than mtime or ctime (can

check is file was read after being written without atime cost)

•  Several other enhancements   Journal checksums, online defragmentation, faster fsck, multi-

block & delayed allocation

10/12 cja 2012 41

Page 42: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

NFS, AFS, NFSv4

Page 43: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

43

Why Distributed File Systems?

•  Sharing •  Availability

  replicated servers •  Location transparency

  naming

10/12 cja 2012

Page 44: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

44

Hard Problems

•  Consistent sharing •  Scalability •  Access control •  Heterogeneity

10/12 cja 2012

Page 45: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

45

NFSv2,3

•  One of the major innovations of the 80’s   Open systems  Open specification

  Remote procedure call (RPC)  Invocation between heterogeneous machines

  Virtual file system interface (VFS)  Abstract interface to file system functions

  Stateless server  Ease of implementation  Obviates lack of server reliability

10/12 cja 2012

Page 46: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

46

Problems with NFSv2,3

•  Naming  Under client control (automounter helps)

•  Scalability  Caching is hard to get right

•  Consistency   Three-second rule

•  Performance  Chatty protocol

10/12 cja 2012

Page 47: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

47

Problems with NFSv2,3

•  Access control   Trusted client   Identity agreement

•  Locking  Outside the NFS protocol specification

•  System administration  No tools for backend management   Proliferation of exported workstation disks

10/12 cja 2012

Page 48: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

48

AFS

•  Architecturally similar to NFS   VFS implementation

•  Better scalability   Stateful server maintains callback promise   Permits aggressive client caching

10/12 cja 2012

Page 49: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

49

AFS

•  Backend management   Volume, authentication, backup services   Transparent to users   Prohibits local access to files  Must use the protocol

•  Kerberos identity replaces trusted client assumption   Access control lists on directories

10/12 cja 2012

Page 50: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

50

Problems with AFS

•  Open/close semantics   “Last close wins”

•  Directory-based access control •  Specification only partly open for some

time

10/12 cja 2012

Page 51: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

NFSv4

•  Major components  Export management  Compound RPC  Delegation  State and locks  Access control lists  Security: RPCSEC_GSS

10/12 51 cja 2012

Page 52: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

52

NFSv4

10/12 cja 2012

Page 53: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

References

1.  Maurice Bach, The Design of the UNIX Operating System, ISBN 978-0132017992, Prentice Hall, 1986. 2.  Dennis M. Ritchie, Ken Thompson, “The UNIX Time Sharing System,” Communications of the ACM, Vol. 17

Issue 7, pp. 365-375, July 1974. http://dl.acm.org/citation.cfm?id=361061 3.  Marshall K. McKusick, William N. Joy, Samuel J. Leffler, and Robert S. Fabry, “A Fast File System for UNIX,”

ACM Transactions on Computer Systems, Vol. 2, No. 3, pp. 181-197, August 1984. http://dl.acm.org/citation.cfm?id=990

4.  http://en.wikipedia.org/wiki/Berkeley_Software_Distribution 5.  http://en.wikipedia.org/wiki/Ext4 et al 6.  http://kernel.org/doc/Documentation/filesystems/ext4.txt 7.  Vijayan Prabhakaran, Andrea C. Arpaci-Dusseau, and Remzi H. Arpaci-Dusseau, “Analysis and Evolution of

Journaling File Systems,” Proc. USENIX Annual Technical Conference, 2005. 8.  http://kerneltrap.org/node/14148 9.  http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard 10.  Sandberg, R., Goldberg, D., Kleiman, S., Walsh, D., and B. Lyon, "Design and Implementation of the Sun

Network Filesystem," Proc. 1985 Summer USENIX Technical Conference. 11.  Sun Microsystems, Inc., "NFS: Network File System Protocol Specification", RFC 1094, March 1989.

http://www.ietf.org/rfc/rfc1094.txt 12.  Pawlowski, B., Juszczak, C., Staubach, P., Smith, C., Lebel, D., and D. Hitz, "NFS Version 3 Design and

Implementation", Proc. USENIX 1994 Summer Technical Conference.

10/12 cja 2012 53

Page 54: Fundamentals of Linux Platform Securitycja/LPS12b/lectures/lps-03.pdf · • Every process maintains a notion of a current working ... Date-of-creation timestamp, ... Maurice Bach,

References

•  Howard, J.H., “An Overview of the Andrew File System,” Proceedings of the USENIX Winter Technical Conference, Dallas, Feb. 1988.

•  Satyanarayanan, M., “Scalable, Secure, and Highly Available Distributed File Access,” IEEE Computer, Vol. 23, No. 5, May 1990.

•  S. Shepler, B. Callahan, D. Robinson, R. Thurlow, C. Beame, M. Eisler, and D. Noveck, “Network File System (NFS) version 4 Protocol,” RFC 3530, April 2003. http://www.ietf.org/rfc/rfc3530.txt

•  http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard

10/12 cja 2012 54