#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
static void print_shmid_ds(struct shmid_ds *, mode_t);
static void sigsys_handler(int);
static void sigchld_handler(int);
static void cleanup(void);
static void receiver(void);
static void usage(void) __dead2;
static const char *m_str = "The quick brown fox jumped over the lazy dog.";
static int sender_shmid = -1;
static pid_t child_pid;
static key_t shmkey;
static size_t pgsize;
int
main(int argc, char *argv[])
{
struct sigaction sa;
struct shmid_ds s_ds;
sigset_t sigmask;
char *shm_buf;
if (argc != 2)
usage();
sa.sa_handler = sigsys_handler;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
if (sigaction(SIGSYS, &sa, NULL) == -1)
err(1, "sigaction SIGSYS");
sa.sa_handler = sigchld_handler;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
if (sigaction(SIGCHLD, &sa, NULL) == -1)
err(1, "sigaction SIGCHLD");
pgsize = sysconf(_SC_PAGESIZE);
shmkey = ftok(argv[1], 4160);
child_pid = getpid();
if (atexit(cleanup) == -1)
err(1, "atexit");
if ((sender_shmid = shmget(shmkey, pgsize, IPC_CREAT | 0640)) == -1)
err(1, "shmget");
if (shmctl(sender_shmid, IPC_STAT, &s_ds) == -1)
err(1, "shmctl IPC_STAT");
print_shmid_ds(&s_ds, 0640);
s_ds.shm_perm.mode = (s_ds.shm_perm.mode & ~0777) | 0600;
if (shmctl(sender_shmid, IPC_SET, &s_ds) == -1)
err(1, "shmctl IPC_SET");
memset(&s_ds, 0, sizeof(s_ds));
if (shmctl(sender_shmid, IPC_STAT, &s_ds) == -1)
err(1, "shmctl IPC_STAT");
if ((s_ds.shm_perm.mode & 0777) != 0600)
err(1, "IPC_SET of mode didn't hold");
print_shmid_ds(&s_ds, 0600);
if ((shm_buf = shmat(sender_shmid, NULL, 0)) == (void *) -1)
err(1, "sender: shmat");
strcpy(shm_buf, m_str);
switch ((child_pid = fork())) {
case -1:
err(1, "fork");
case 0:
receiver();
break;
default:
break;
}
sigemptyset(&sigmask);
(void) sigsuspend(&sigmask);
errx(1, "sender: received unexpected signal");
}
static void
sigsys_handler(int signo __unused)
{
errx(1, "System V Shared Memory support is not present in the kernel");
}
static void
sigchld_handler(int signo __unused)
{
struct shmid_ds s_ds;
int cstatus;
if (waitpid(child_pid, &cstatus, 0) != child_pid)
err(1, "waitpid");
if (WIFEXITED(cstatus) == 0)
errx(1, "receiver exited abnormally");
if (WEXITSTATUS(cstatus) != 0)
errx(1, "receiver exited with status %d",
WEXITSTATUS(cstatus));
if (shmctl(sender_shmid, IPC_STAT, &s_ds) == -1)
err(1, "shmctl IPC_STAT");
print_shmid_ds(&s_ds, 0600);
exit(0);
}
static void
cleanup(void)
{
if (child_pid != 0 && sender_shmid != -1) {
if (shmctl(sender_shmid, IPC_RMID, NULL) == -1)
warn("shmctl IPC_RMID");
}
}
static void
print_shmid_ds(struct shmid_ds *sp, mode_t mode)
{
uid_t uid = geteuid();
gid_t gid = getegid();
printf("PERM: uid %d, gid %d, cuid %d, cgid %d, mode 0%o\n",
sp->shm_perm.uid, sp->shm_perm.gid,
sp->shm_perm.cuid, sp->shm_perm.cgid,
sp->shm_perm.mode & 0777);
printf("segsz %lu, lpid %d, cpid %d, nattch %u\n",
(u_long)sp->shm_segsz, sp->shm_lpid, sp->shm_cpid,
sp->shm_nattch);
printf("atime: %s", ctime(&sp->shm_atime));
printf("dtime: %s", ctime(&sp->shm_dtime));
printf("ctime: %s", ctime(&sp->shm_ctime));
if (sp->shm_perm.uid != uid || sp->shm_perm.cuid != uid)
errx(1, "uid mismatch");
if (sp->shm_perm.gid != gid || sp->shm_perm.cgid != gid)
errx(1, "gid mismatch");
if ((sp->shm_perm.mode & 0777) != mode)
errx(1, "mode mismatch");
}
static void
usage(void)
{
fprintf(stderr, "usage: %s keypath\n", getprogname());
exit(1);
}
static void
receiver(void)
{
int shmid;
void *shm_buf;
if ((shmid = shmget(shmkey, pgsize, 0)) == -1)
err(1, "receiver: shmget");
if ((shm_buf = shmat(shmid, NULL, 0)) == (void *) -1)
err(1, "receiver: shmat");
printf("%s\n", (const char *)shm_buf);
if (strcmp((const char *)shm_buf, m_str) != 0)
err(1, "receiver: data isn't correct");
exit(0);
}