Title: COMP309/509 - Lecture 5 class: middle, center, inverse

COMP309/509 - Parallel and Distributed Computing

Lecture 6 - More Interprocess Communication

By Mitchell Welch

University of New England


Reading


Summary


FIFOs


FIFOs

#include <sys/types.h>
#include <sys/stat.h>

int mkfifo(const char *path, mode_t mode);

int mkfifoat(int dirfd, const char *pathname, mode_t mode);

FIFOs


FIFOs

#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

int main(){
    int fd;
    char * myfifo = "/tmp/myfifo";
    /* create the FIFO (named pipe) */
    mkfifo(myfifo, 0666);
    /* write "Hi" to the FIFO */
    fd = open(myfifo, O_WRONLY);
    write(fd, "Hi", sizeof("COMP309 is cool!"));
    close(fd);
    /* remove the FIFO */
    unlink(myfifo);
    return 0;
}

FIFOs

#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#define MAX_BUF 1024

int main(){
    int fd;
    char * myfifo = "/tmp/myfifo";
    char buf[MAX_BUF];
    /* open, read, and display the message from the FIFO */
    fd = open(myfifo, O_RDONLY);
    read(fd, buf, MAX_BUF);
    printf("Received: %s\n", buf);
    close(fd);
    return 0;
}

FIFOs


FIFOs


FIFOs

.center[center-aligned image]


File Locking


File Locking


File Locking


File Locking


File Locking


File Locking

int fcntl(int fd, int cmd);
int fcntl(int fd, int cmd, long arg);
int fcntl(int fd, int cmd, struct flock *lock);
int fcntl(int fd,               /* open file descriptor            */
          int cmd,              /* F_GETLK,  F_SETLK  or F_SETLKW  */
          struct flock *lock);  /* a struct containing details etc */

Read man fcntl!


File Locking

 struct flock {
         short l_type;    /* Type of lock: F_RDLCK,F_WRLCK, F_UNLCK */
         short l_whence;  /* How to interpret l_start: SEEK_SET, SEEK_CUR, SEEK_END */
         off_t l_start;   /* Starting offset for lock */
         off_t l_len;     /* Number of bytes to lock */
         pid_t l_pid;     /* PID of process blocking our lock (F_GETLK only) */

     };

File Locking

errcode = fcntl(fd, F_SETLK, &lock);

File Locking

/*filelock.h*/
#include <fcntl.h> /* for struct flock */

typedef struct flock fileLock_t;
typedef fileLock_t *fileLock_p;

/* make a nice clean lock                                     */
fileLock_p makeLock(void);

/* obtains a write lock on the fd, returns the call to fcntl  */
int getLock(fileLock_p lock, int fd);

/* unlocks the write lock on fd,   returns the call to fcntl  */
int unLock(fileLock_p lock, int fd);

/* frees the lock made by a makeLock                          */
void freeLock(fileLock_p lock);

File Locking

#include <stdlib.h>  /* for NULL            */
#include <stdio.h>   /* for fprintf         */
#include <string.h>  /* for memset          */

#include "fileLock.h" /* includes <fcntl.h> */

fileLock_p makeLock(void){
  fileLock_p retval = (fileLock_p)calloc(1, sizeof(fileLock_t));
  if(retval == NULL){
    perror("makeLock: calloc failed!");
  }
  return retval;
}

int getLock(fileLock_p lock, int fd){
  memset(lock, 0, sizeof(fileLock_t));
  lock->l_type = F_WRLCK;
  return fcntl(fd, F_SETLKW, lock);
}
...

File Locking

...
int unLock(fileLock_p lock, int fd){
  lock->l_type = F_UNLCK;
  return fcntl(fd, F_SETLKW, lock);
}

void freeLock(fileLock_p lock){
  free(lock);
}

File Locking

#include <stdio.h>      /* for fprintf */
#include <stdlib.h>     /* for exit    */
#include <sys/types.h>  /* for open    */
#include <sys/stat.h>   /* for open    */
#include <fcntl.h>      /* for open    */

#include "fileLock.h"

int main(int argc, char** argv){
  int fd;
  char* file;
  if(argc != 2){
    fprintf(stderr, "Usage: %s <filename>\n", argv[0]);
    exit(EXIT_FAILURE);
  }
  ... 

File Locking

  file = argv[1];
  fd = open(file,  O_RDWR, S_IRWXU);
  if(fd < 0){
    perror("File opening failed.");
    exit(EXIT_FAILURE);
  } else {
    int lval;
    fileLock_p lock = makeLock();
    if(lock == NULL){
      perror("Lock creation failed.");
      exit(EXIT_FAILURE);
    }
 ...

File Locking

    fprintf(stderr, "Attempting to lock %s\n", file);
    lval = getLock(lock, fd);
    if(lval == -1){
      perror("Locking failed");
      exit(EXIT_FAILURE);
    }
    fprintf(stderr, "Successfully locked %s (hit any key to continue)\n", file);
    getchar();
    unLock(lock, fd);
    freeLock(lock);
    exit(EXIT_SUCCESS);
  }
}

File Locking


Shared Memory


#include <sys/ipc.h>
#include <sys/shm.h>

int shmget(key_t key, size_t size, int shmflg);
#include <sys/mman.h>

 void  *mmap(void *start, size_t length, int prot , 
             int flags, int fd,  off_t offset);

Shared Memory

 void  *mmap(void *start, size_t length, int prot ,int flags, int fd,  off_t offset);

Shared Memory


Shared Memory


Shared Memory


Shared Memory

startaddr = mmap(0, 
                 size, 
                 PROT_READ | PROT_WRITE,
                 MAP_SHARED,
                 fd, 
                 0);

Shared Memory


Shared Memory


Shared Memory

In the first example we will treat the memory startaddr as a pointer to an int:

int *count;
...
size_t size = sizeof(int);
...
startaddr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if(start_addr == MAP_FAILED){
  perror("mmap failed");
  exit(EXIT_FAILURE);
}
...
count = (int *)start_addr;

Shared Memory

typedef struct shared {
  int    nprocs;
  pid_t  pids[PROC_MAX];
} shared_t;

size_t size = sizeof(shared_t);
shared_t *shared;

startaddr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if(start_addr == MAP_FAILED){
  perror("mmap failed");
  exit(EXIT_FAILURE);
}
shared = (shared_t *)start_addr;

Shared Memory


Summary


class: middle, center, inverse

Questions?


Reading