1 / 31

Stat mmap and file system interface

Stat mmap and file system interface. Nezer J. Zaidenberg. Stat(2). NAME stat, lstat, fstat -- get file status SYNOPSIS #include <sys/types.h> #include <sys/stat.h> int stat(const char *path, struct stat *sb); int lstat(const char *path, struct stat *sb);

xanto
Télécharger la présentation

Stat mmap and file system interface

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Stat mmap and file system interface Nezer J. Zaidenberg

  2. Stat(2) NAME stat, lstat, fstat -- get file status SYNOPSIS #include <sys/types.h> #include <sys/stat.h> int stat(const char *path, struct stat *sb); int lstat(const char *path, struct stat *sb); int fstat(int fd, struct stat *sb);

  3. Struct stat (1/2)) struct stat { dev_t st_dev; /* device inode resides on */ ino_t st_ino; /* inode's number */ mode_t st_mode; /* inode protection mode */ nlink_t st_nlink; /* number or hard links to the file */ uid_t st_uid; /* user-id of owner */ gid_t st_gid; /* group-id of owner */ dev_t st_rdev; /* device type, for special file inode */

  4. Struct stat (2/2) struct timespec st_atimespec; /* time of last access */ struct timespec st_mtimespec; /* time of last data modification */ struct timespec st_ctimespec; /* time of last file status change */ off_t st_size; /* file size, in bytes */ quad_t st_blocks; /* blocks allocated for file */ u_long st_blksize;/* optimal file sys I/O ops blocksize */ u_long st_flags; /* user defined flags for file */ u_long st_gen; /* file generation number */ };

  5. Unlink(2) NAME unlink -- remove directory entry SYNOPSIS #include <unistd.h> int unlink(const char *path);

  6. Lseek(2) NAME lseek -- reposition read/write file offset SYNOPSIS #include <unistd.h> off_t lseek(int fildes, off_t offset, int whence);

  7. Creat(2) SYNOPSIS #include <fcntl.h> int creat(const char *path, mode_t mode);

  8. Dup(2) SYNOPSIS #include <unistd.h> int dup(int oldd); int dup2(int oldd, int newd);

  9. Flock(2) SYNOPSIS #include <sys/file.h> #define LOCK_SH 1 /* shared lock */ #define LOCK_EX 2 /* exclusive lock */ #define LOCK_NB 4 /* don't block when locking */ #define LOCK_UN 8 /* unlock */ int flock(int fd, int operation);

  10. Fcntl(2) SYNOPSIS #include <fcntl.h> int fcntl(int fd, int cmd, int arg);

  11. Linking • Symlink(2) • Link(2) • Create soft and hard link

  12. Memory mapping • Mmap(2) • Munmap(2) • Msync(2)

  13. Mmap(2) • Copy a file to memory • This memory can be shared (among process) or locked • Check mprotect(2) for locking option (beyond our scope) • Use msync(2) to write changes • Use munmap(2) to write and free memory • Homework : use read(2) and write(2) to copy file. Then use mmap and memory copy. What works faster?

  14. Mmap(2) NAME mmap -- map files or devices into memory SYNOPSIS #include <sys/mman.h> void * mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t offset);

  15. Munmap(2) NAME munmap -- remove a mapping SYNOPSIS #include <sys/mman.h> int munmap(void *addr, size_t len);

  16. Msync(2) NAME msync -- synchronize a mapped region SYNOPSIS #include <sys/mman.h> int msync(void *addr, size_t len, int flags);

  17. Example (1/2) #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> /* mmap() is defined in this header */ #include <fcntl.h> int main (int argc, char *argv[]) // will be used as cp source dest { int fdin, fdout; char *src, *dst; struct stat statbuf; fdin = open (argv[1], O_RDONLY); fdout = open (argv[2], O_RDWR | O_CREAT | O_TRUNC, FILE_MODE);

  18. Example 2/2 fstat (fdin,&statbuf); // get size lseek (fdout, statbuf.st_size - 1, SEEK_SET); // go to the location corresponding to the last byte write (fdout, "", 1) // output file now the size of input file /* mmap the input and output file */ src = mmap (0, statbuf.st_size, PROT_READ, MAP_SHARED, fdin, 0); dst = mmap (0, statbuf.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fdout, 0); memcpy (dst, src, statbuf.st_size); } // if we wanted to write and continue we had to use munmap or msync

  19. Signals Debt from homework

  20. Signal(3) SYNOPSIS #include <signal.h> void (* signal(int sig, void (*func)(int)))(int); or in the equivalent but easier to read typedef'd version: typedef void (*sig_t) (int); sig_t signal(int sig, sig_t func);

  21. Sigaction(2) (1/2) SYNOPSIS #include <signal.h> struct sigaction { union { void (*__sa_handler)(int); void (*__sa_sigaction)(int, struct __siginfo *, void *); } __sigaction_u; /* signal handler */ int sa_flags; /* see signal options below */ sigset_t sa_mask; /* signal mask to apply */ };

  22. Sigaction(2) 2/2 #define sa_handler __sigaction_u.__sa_handler #define sa_sigaction __sigaction_u.__sa_sigaction int sigaction(int sig, const struct sigaction * restrict act, struct sigaction * restrict oact);

  23. Kill(2) SYNOPSIS #include <signal.h> int kill(pid_t pid, int sig);

  24. What you may do in a sig handler Signal handler are very low level code. They are invoked by the kernel, as an interrupt to the program (even while doing other system call) – some of you got EINTR on select(2) Therefore we must not get another interrupt on signal handler. Use only memory operation and non blocking system calls. (specifically avoid file I/O on signal hanglers) Getting another signal on signal handler may result in undefined behavior or even damned recursion

  25. FAQ From homework

  26. debugging • Gdb – lowest level • Ddd – graphical front end • Compile flag for debugging - -g • Create coredump • (tcsh) setenv coredumpsize 100000000 • (bash) ulimit –c 10000000000 • Traces: ptrace(1) strace(1) • Top : display list of process with CPU usage • Kill -9 pid = kill one of your processes

  27. find • Grep = find in file (grep terlala *.h */*.h) • /usr/include = where most of the include are • /usr/bin = where most exe are

  28. Vi commands for programming (1/2) • ~/.vimrc = commands that run on each new vi session • <esc>:set nu = line numbers • <esc>:set ai = auto ident • <esc>:set ts=4 = tabstop=4 • <esc>:set sw=4 = shiftwidth=4 • >> << = ident one shift width inside or outside • sy on = syntax enlightment on and off

  29. Vi commands for programming 2/2 • Name completion, jumping to function declaration /definition = man ctags(1) • map = create shortcut for command mode • map! = create shortcut for insert mode • r = read file • r! = read the output of execuable • sh = move to shell

  30. Interrupted system call • Check chapter 10.5 in advanced programming in the unix environment • Also do man select and check EINTR • Basicly if you get a signal such a SIGCHLD select will fail. This is condition you have to check but you don’t have to die (actually you should not die)

  31. Syslog • In order for syslog to work you need to use LOG_LOCAL5 as facility (in openlog(3)) • Because syslog didn’t work initially we accepted file logging (but syslog is now required for homework 2) • The log file is at /var/log/messages

More Related