ubase/mkswap.c

90 lines
1.7 KiB
C
Raw Permalink Normal View History

2013-08-09 12:45:20 +00:00
/* See LICENSE file for copyright and license details. */
#include <sys/stat.h>
2014-06-30 18:03:41 +00:00
2013-08-09 12:45:20 +00:00
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2014-06-30 18:03:41 +00:00
#include <unistd.h>
2013-08-09 12:45:20 +00:00
#include "util.h"
2014-11-30 12:33:51 +00:00
#define SWAP_UUID_LENGTH 16
#define SWAP_LABEL_LENGTH 16
#define SWAP_MIN_PAGES 10
2013-08-09 12:45:20 +00:00
struct swap_hdr {
char bootbits[1024];
unsigned int version;
unsigned int last_page;
unsigned int nr_badpages;
unsigned char uuid[SWAP_UUID_LENGTH];
char volume_name[SWAP_LABEL_LENGTH];
unsigned int padding[117];
unsigned int badpages[1];
};
static void
usage(void)
{
2013-08-14 13:32:22 +00:00
eprintf("usage: %s device\n", argv0);
2013-08-09 12:45:20 +00:00
}
int
main(int argc, char *argv[])
{
int fd;
unsigned int pages;
long pagesize;
struct stat sb;
char *buf;
struct swap_hdr *hdr;
ARGBEGIN {
default:
usage();
} ARGEND;
if (argc < 1)
usage();
pagesize = sysconf(_SC_PAGESIZE);
if (pagesize <= 0) {
pagesize = sysconf(_SC_PAGE_SIZE);
if (pagesize <= 0)
eprintf("can't determine pagesize\n");
}
2013-08-09 12:45:20 +00:00
fd = open(argv[0], O_RDWR);
if (fd < 0)
eprintf("open %s:", argv[0]);
if (fstat(fd, &sb) < 0)
eprintf("stat %s:", argv[0]);
buf = ecalloc(1, pagesize);
2013-08-09 12:45:20 +00:00
pages = sb.st_size / pagesize;
if (pages < SWAP_MIN_PAGES)
eprintf("swap space needs to be at least %ldKiB\n",
SWAP_MIN_PAGES * pagesize / 1024);
2013-08-09 12:45:20 +00:00
/* Fill up the swap header */
hdr = (struct swap_hdr *)buf;
hdr->version = 1;
hdr->last_page = pages - 1;
strncpy(buf + pagesize - 10, "SWAPSPACE2", 10);
printf("Setting up swapspace version 1, size = %luKiB\n",
(pages - 1) * pagesize / 1024);
/* Write out the signature page */
if (write(fd, buf, pagesize) != pagesize)
eprintf("unable to write signature page\n");
2013-08-09 12:45:20 +00:00
fsync(fd);
close(fd);
free(buf);
2014-10-02 22:45:25 +00:00
return 0;
2013-08-09 12:45:20 +00:00
}