2000-02-08 19:58:47 +00:00
|
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
|
/*
|
|
|
|
|
* mkswap.c - set up a linux swap device
|
|
|
|
|
*
|
|
|
|
|
* (C) 1991 Linus Torvalds. This file may be redistributed as per
|
|
|
|
|
* the Linux copyright.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 20.12.91 - time began. Got VM working yesterday by doing this by hand.
|
|
|
|
|
*
|
1999-10-19 20:03:34 +00:00
|
|
|
|
* Usage: mkswap [-c] [-vN] [-f] device [size-in-blocks]
|
1999-10-05 16:24:54 +00:00
|
|
|
|
*
|
1999-10-19 20:03:34 +00:00
|
|
|
|
* -c for readability checking. (Use it unless you are SURE!)
|
|
|
|
|
* -vN for swap areas version N. (Only N=0,1 known today.)
|
|
|
|
|
* -f for forcing swap creation even if it would smash partition table.
|
1999-10-05 16:24:54 +00:00
|
|
|
|
*
|
1999-10-19 20:03:34 +00:00
|
|
|
|
* The device may be a block device or an image of one, but this isn't
|
1999-10-05 16:24:54 +00:00
|
|
|
|
* enforced (but it's not much fun on a character device :-).
|
|
|
|
|
*
|
|
|
|
|
* Patches from jaggy@purplet.demon.co.uk (Mike Jagdis) to make the
|
|
|
|
|
* size-in-blocks parameter optional added Wed Feb 8 10:33:43 1995.
|
1999-10-19 20:03:34 +00:00
|
|
|
|
*
|
|
|
|
|
* Version 1 swap area code (for kernel 2.1.117), aeb, 981010.
|
|
|
|
|
*
|
|
|
|
|
* Sparc fixes, jj@ultra.linux.cz (Jakub Jelinek), 981201 - mangled by aeb.
|
|
|
|
|
* V1_MAX_PAGES fixes, jj, 990325.
|
|
|
|
|
*
|
|
|
|
|
* 1999-02-22 Arkadiusz Mi<EFBFBD>kiewicz <misiek@misiek.eu.org>
|
|
|
|
|
* - added Native Language Support
|
|
|
|
|
*
|
|
|
|
|
* from util-linux -- adapted for busybox by
|
|
|
|
|
* Erik Andersen <andersee@debian.org>. I ripped out Native Language
|
|
|
|
|
* Support, made some stuff smaller, and fitted for life in busybox.
|
|
|
|
|
*
|
1999-10-05 16:24:54 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
|
#include "busybox.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <stdlib.h>
|
2000-02-08 19:58:47 +00:00
|
|
|
|
#include <sys/ioctl.h> /* for _IO */
|
1999-10-19 20:03:34 +00:00
|
|
|
|
#include <sys/utsname.h>
|
2000-02-08 19:58:47 +00:00
|
|
|
|
#include <asm/page.h> /* for PAGE_SIZE and PAGE_SHIFT */
|
1999-10-19 20:03:34 +00:00
|
|
|
|
/* we also get PAGE_SIZE via getpagesize() */
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
#ifndef _IO
|
|
|
|
|
/* pre-1.3.45 */
|
|
|
|
|
#define BLKGETSIZE 0x1260
|
|
|
|
|
#else
|
|
|
|
|
/* same on i386, m68k, arm; different on alpha, mips, sparc, ppc */
|
|
|
|
|
#define BLKGETSIZE _IO(0x12,96)
|
|
|
|
|
#endif
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static char *device_name = NULL;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
static int DEV = -1;
|
|
|
|
|
static long PAGES = 0;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
static int check = 0;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
static int badpages = 0;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
static int version = -1;
|
|
|
|
|
|
|
|
|
|
#define MAKE_VERSION(p,q,r) (65536*(p) + 256*(q) + (r))
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The definition of the union swap_header uses the constant PAGE_SIZE.
|
|
|
|
|
* Unfortunately, on some architectures this depends on the hardware model,
|
|
|
|
|
* and can only be found at run time -- we use getpagesize().
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int pagesize;
|
|
|
|
|
static int *signature_page;
|
|
|
|
|
|
|
|
|
|
struct swap_header_v1 {
|
2000-02-08 19:58:47 +00:00
|
|
|
|
char bootbits[1024]; /* Space for disklabel etc. */
|
1999-10-19 20:03:34 +00:00
|
|
|
|
unsigned int version;
|
|
|
|
|
unsigned int last_page;
|
|
|
|
|
unsigned int nr_badpages;
|
|
|
|
|
unsigned int padding[125];
|
|
|
|
|
unsigned int badpages[1];
|
|
|
|
|
} *p;
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static void init_signature_page()
|
|
|
|
|
{
|
1999-10-19 20:03:34 +00:00
|
|
|
|
pagesize = getpagesize();
|
|
|
|
|
|
|
|
|
|
#ifdef PAGE_SIZE
|
|
|
|
|
if (pagesize != PAGE_SIZE)
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("Assuming pages of size %d\n", pagesize);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
#endif
|
2000-03-21 22:32:57 +00:00
|
|
|
|
signature_page = (int *) xmalloc(pagesize);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
memset(signature_page, 0, pagesize);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
p = (struct swap_header_v1 *) signature_page;
|
|
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static void write_signature(char *sig)
|
|
|
|
|
{
|
1999-10-19 20:03:34 +00:00
|
|
|
|
char *sp = (char *) signature_page;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
strncpy(sp + pagesize - 10, sig, 10);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define V0_MAX_PAGES (8 * (pagesize - 10))
|
|
|
|
|
/* Before 2.2.0pre9 */
|
|
|
|
|
#define V1_OLD_MAX_PAGES ((0x7fffffff / pagesize) - 1)
|
|
|
|
|
/* Since 2.2.0pre9:
|
|
|
|
|
error if nr of pages >= SWP_OFFSET(SWP_ENTRY(0,~0UL))
|
|
|
|
|
with variations on
|
|
|
|
|
#define SWP_ENTRY(type,offset) (((type) << 1) | ((offset) << 8))
|
|
|
|
|
#define SWP_OFFSET(entry) ((entry) >> 8)
|
|
|
|
|
on the various architectures. Below the result - yuk.
|
|
|
|
|
|
|
|
|
|
Machine pagesize SWP_ENTRY SWP_OFFSET bound+1 oldbound+2
|
|
|
|
|
i386 2^12 o<<8 e>>8 1<<24 1<<19
|
|
|
|
|
mips 2^12 o<<15 e>>15 1<<17 1<<19
|
|
|
|
|
alpha 2^13 o<<40 e>>40 1<<24 1<<18
|
|
|
|
|
m68k 2^12 o<<12 e>>12 1<<20 1<<19
|
|
|
|
|
sparc 2^{12,13} (o&0x3ffff)<<9 (e>>9)&0x3ffff 1<<18 1<<{19,18}
|
|
|
|
|
sparc64 2^13 o<<13 e>>13 1<<51 1<<18
|
|
|
|
|
ppc 2^12 o<<8 e>>8 1<<24 1<<19
|
|
|
|
|
armo 2^{13,14,15} o<<8 e>>8 1<<24 1<<{18,17,16}
|
|
|
|
|
armv 2^12 o<<9 e>>9 1<<23 1<<19
|
|
|
|
|
|
|
|
|
|
assuming that longs have 64 bits on alpha and sparc64 and 32 bits elsewhere.
|
|
|
|
|
|
|
|
|
|
The bad part is that we need to know this since the kernel will
|
|
|
|
|
refuse a swap space if it is too large.
|
|
|
|
|
*/
|
|
|
|
|
/* patch from jj - why does this differ from the above? */
|
|
|
|
|
#if defined(__alpha__)
|
|
|
|
|
#define V1_MAX_PAGES ((1 << 24) - 1)
|
|
|
|
|
#elif defined(__mips__)
|
|
|
|
|
#define V1_MAX_PAGES ((1 << 17) - 1)
|
|
|
|
|
#elif defined(__sparc_v9__)
|
|
|
|
|
#define V1_MAX_PAGES ((3 << 29) - 1)
|
|
|
|
|
#elif defined(__sparc__)
|
|
|
|
|
#define V1_MAX_PAGES (pagesize == 8192 ? ((3 << 29) - 1) : ((1 << 18) - 1))
|
|
|
|
|
#else
|
|
|
|
|
#define V1_MAX_PAGES V1_OLD_MAX_PAGES
|
|
|
|
|
#endif
|
|
|
|
|
/* man page now says:
|
|
|
|
|
The maximum useful size of a swap area now depends on the architecture.
|
|
|
|
|
It is roughly 2GB on i386, PPC, m68k, ARM, 1GB on sparc, 512MB on mips,
|
|
|
|
|
128GB on alpha and 3TB on sparc64.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define MAX_BADPAGES ((pagesize-1024-128*sizeof(int)-10)/sizeof(int))
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static void bit_set(unsigned int *addr, unsigned int nr)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int r, m;
|
|
|
|
|
|
|
|
|
|
addr += nr / (8 * sizeof(int));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
r = *addr;
|
|
|
|
|
m = 1 << (nr & (8 * sizeof(int) - 1));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
*addr = r | m;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static int bit_test_and_clear(unsigned int *addr, unsigned int nr)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int r, m;
|
|
|
|
|
|
|
|
|
|
addr += nr / (8 * sizeof(int));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
r = *addr;
|
|
|
|
|
m = 1 << (nr & (8 * sizeof(int) - 1));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
*addr = r & ~m;
|
|
|
|
|
return (r & m) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
void die(const char *str)
|
|
|
|
|
{
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("%s\n", str);
|
2000-12-01 02:55:13 +00:00
|
|
|
|
exit(EXIT_FAILURE);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
void page_ok(int page)
|
|
|
|
|
{
|
|
|
|
|
if (version == 0)
|
1999-10-19 20:03:34 +00:00
|
|
|
|
bit_set(signature_page, page);
|
|
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
void page_bad(int page)
|
|
|
|
|
{
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if (version == 0)
|
|
|
|
|
bit_test_and_clear(signature_page, page);
|
|
|
|
|
else {
|
|
|
|
|
if (badpages == MAX_BADPAGES)
|
|
|
|
|
die("too many bad pages");
|
|
|
|
|
p->badpages[badpages] = page;
|
|
|
|
|
}
|
|
|
|
|
badpages++;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
void check_blocks(void)
|
|
|
|
|
{
|
1999-10-05 16:24:54 +00:00
|
|
|
|
unsigned int current_page;
|
|
|
|
|
int do_seek = 1;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
char *buffer;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-03-21 22:32:57 +00:00
|
|
|
|
buffer = xmalloc(pagesize);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
current_page = 0;
|
|
|
|
|
while (current_page < PAGES) {
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if (!check) {
|
|
|
|
|
page_ok(current_page++);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (do_seek && lseek(DEV, current_page * pagesize, SEEK_SET) !=
|
|
|
|
|
current_page * pagesize)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
die("seek failed in check_blocks");
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if ((do_seek = (pagesize != read(DEV, buffer, pagesize)))) {
|
|
|
|
|
page_bad(current_page++);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
1999-10-19 20:03:34 +00:00
|
|
|
|
page_ok(current_page++);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if (badpages == 1)
|
|
|
|
|
printf("one bad page\n");
|
|
|
|
|
else if (badpages > 1)
|
|
|
|
|
printf("%d bad pages\n", badpages);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static long valid_offset(int fd, int offset)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
{
|
|
|
|
|
char ch;
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (lseek(fd, offset, 0) < 0)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
return 0;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (read(fd, &ch, 1) < 1)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static int find_size(int fd)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
{
|
1999-10-19 20:03:34 +00:00
|
|
|
|
unsigned int high, low;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
|
|
low = 0;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
for (high = 1; high > 0 && valid_offset(fd, high); high *= 2)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
low = high;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
while (low < high - 1) {
|
1999-10-05 16:24:54 +00:00
|
|
|
|
const int mid = (low + high) / 2;
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (valid_offset(fd, mid))
|
1999-10-05 16:24:54 +00:00
|
|
|
|
low = mid;
|
|
|
|
|
else
|
|
|
|
|
high = mid;
|
|
|
|
|
}
|
|
|
|
|
return (low + 1);
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
/* return size in pages, to avoid integer overflow */
|
2000-02-08 19:58:47 +00:00
|
|
|
|
static long get_size(const char *file)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
|
int fd;
|
|
|
|
|
long size;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
fd = open(file, O_RDONLY);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
if (fd < 0) {
|
|
|
|
|
perror(file);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
|
2000-02-08 19:58:47 +00:00
|
|
|
|
int sectors_per_page = pagesize / 512;
|
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
size /= sectors_per_page;
|
|
|
|
|
} else {
|
|
|
|
|
size = find_size(fd) / pagesize;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
|
|
|
|
close(fd);
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
int mkswap_main(int argc, char **argv)
|
1999-10-19 20:03:34 +00:00
|
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
|
char *tmp;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
struct stat statbuf;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
int sz;
|
|
|
|
|
int maxpages;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
int goodpages;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
int offset;
|
|
|
|
|
int force = 0;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
init_signature_page(); /* get pagesize */
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
while (argc-- > 1) {
|
|
|
|
|
argv++;
|
|
|
|
|
if (argv[0][0] != '-') {
|
|
|
|
|
if (device_name) {
|
2000-02-08 19:58:47 +00:00
|
|
|
|
int blocks_per_page = pagesize / 1024;
|
|
|
|
|
|
|
|
|
|
PAGES = strtol(argv[0], &tmp, 0) / blocks_per_page;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if (*tmp)
|
2000-02-08 19:58:47 +00:00
|
|
|
|
usage(mkswap_usage);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
} else
|
|
|
|
|
device_name = argv[0];
|
|
|
|
|
} else {
|
|
|
|
|
switch (argv[0][1]) {
|
2000-02-08 19:58:47 +00:00
|
|
|
|
case 'c':
|
|
|
|
|
check = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'f':
|
|
|
|
|
force = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
|
|
|
|
version = atoi(argv[0] + 2);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
usage(mkswap_usage);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!device_name) {
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("error: Nowhere to set up swap on?\n");
|
2000-02-08 19:58:47 +00:00
|
|
|
|
usage(mkswap_usage);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
1999-10-19 20:03:34 +00:00
|
|
|
|
sz = get_size(device_name);
|
|
|
|
|
if (!PAGES) {
|
|
|
|
|
PAGES = sz;
|
|
|
|
|
} else if (PAGES > sz && !force) {
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("error: size %ld is larger than device size %d\n",
|
2000-02-08 19:58:47 +00:00
|
|
|
|
PAGES * (pagesize / 1024), sz * (pagesize / 1024));
|
2000-12-01 02:55:13 +00:00
|
|
|
|
return EXIT_FAILURE;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (version == -1) {
|
|
|
|
|
if (PAGES <= V0_MAX_PAGES)
|
|
|
|
|
version = 0;
|
2000-10-30 17:22:04 +00:00
|
|
|
|
else if (get_kernel_revision() < MAKE_VERSION(2, 1, 117))
|
1999-10-19 20:03:34 +00:00
|
|
|
|
version = 0;
|
|
|
|
|
else if (pagesize < 2048)
|
|
|
|
|
version = 0;
|
|
|
|
|
else
|
|
|
|
|
version = 1;
|
|
|
|
|
}
|
|
|
|
|
if (version != 0 && version != 1) {
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("error: unknown version %d\n", version);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
usage(mkswap_usage);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
if (PAGES < 10) {
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("error: swap area needs to be at least %ldkB\n",
|
|
|
|
|
(long) (10 * pagesize / 1024));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
usage(mkswap_usage);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
#if 0
|
|
|
|
|
maxpages = ((version == 0) ? V0_MAX_PAGES : V1_MAX_PAGES);
|
|
|
|
|
#else
|
|
|
|
|
if (!version)
|
|
|
|
|
maxpages = V0_MAX_PAGES;
|
2000-10-30 17:22:04 +00:00
|
|
|
|
else if (get_kernel_revision() >= MAKE_VERSION(2, 2, 1))
|
1999-10-19 20:03:34 +00:00
|
|
|
|
maxpages = V1_MAX_PAGES;
|
|
|
|
|
else {
|
|
|
|
|
maxpages = V1_OLD_MAX_PAGES;
|
|
|
|
|
if (maxpages > V1_MAX_PAGES)
|
|
|
|
|
maxpages = V1_MAX_PAGES;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
1999-10-19 20:03:34 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (PAGES > maxpages) {
|
|
|
|
|
PAGES = maxpages;
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("warning: truncating swap area to %ldkB\n",
|
|
|
|
|
PAGES * pagesize / 1024);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
1999-10-19 20:03:34 +00:00
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
|
DEV = open(device_name, O_RDWR);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
if (DEV < 0 || fstat(DEV, &statbuf) < 0) {
|
|
|
|
|
perror(device_name);
|
2000-12-01 02:55:13 +00:00
|
|
|
|
return EXIT_FAILURE;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|
|
|
|
|
if (!S_ISBLK(statbuf.st_mode))
|
2000-02-08 19:58:47 +00:00
|
|
|
|
check = 0;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
|
|
|
|
|
die("Will not try to make swapdevice on '%s'");
|
1999-10-19 20:03:34 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __sparc__
|
|
|
|
|
if (!force && version == 0) {
|
|
|
|
|
/* Don't overwrite partition table unless forced */
|
2000-02-08 19:58:47 +00:00
|
|
|
|
unsigned char *buffer = (unsigned char *) signature_page;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
unsigned short *q, sum;
|
|
|
|
|
|
|
|
|
|
if (read(DEV, buffer, 512) != 512)
|
|
|
|
|
die("fatal: first page unreadable");
|
|
|
|
|
if (buffer[508] == 0xDA && buffer[509] == 0xBE) {
|
2000-02-08 19:58:47 +00:00
|
|
|
|
q = (unsigned short *) (buffer + 510);
|
1999-10-19 20:03:34 +00:00
|
|
|
|
for (sum = 0; q >= (unsigned short *) buffer;)
|
|
|
|
|
sum ^= *q--;
|
|
|
|
|
if (!sum) {
|
2000-07-14 01:51:25 +00:00
|
|
|
|
errorMsg("Device '%s' contains a valid Sun disklabel.\n"
|
|
|
|
|
"This probably means creating v0 swap would destroy your partition table\n"
|
|
|
|
|
"No swap created. If you really want to create swap v0 on that device, use\n"
|
|
|
|
|
"the -f option to force it.\n", device_name);
|
2000-12-01 02:55:13 +00:00
|
|
|
|
return EXIT_FAILURE;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (version == 0 || check)
|
|
|
|
|
check_blocks();
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (version == 0 && !bit_test_and_clear(signature_page, 0))
|
1999-10-05 16:24:54 +00:00
|
|
|
|
die("fatal: first page unreadable");
|
1999-10-19 20:03:34 +00:00
|
|
|
|
if (version == 1) {
|
|
|
|
|
p->version = version;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
p->last_page = PAGES - 1;
|
1999-10-19 20:03:34 +00:00
|
|
|
|
p->nr_badpages = badpages;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
goodpages = PAGES - badpages - 1;
|
|
|
|
|
if (goodpages <= 0)
|
|
|
|
|
die("Unable to set up swap-space: unreadable");
|
1999-10-19 20:03:34 +00:00
|
|
|
|
printf("Setting up swapspace version %d, size = %ld bytes\n",
|
2000-02-08 19:58:47 +00:00
|
|
|
|
version, (long) (goodpages * pagesize));
|
1999-10-19 20:03:34 +00:00
|
|
|
|
write_signature((version == 0) ? "SWAP-SPACE" : "SWAPSPACE2");
|
|
|
|
|
|
|
|
|
|
offset = ((version == 0) ? 0 : 1024);
|
|
|
|
|
if (lseek(DEV, offset, SEEK_SET) != offset)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
die("unable to rewind swap-device");
|
2000-02-08 19:58:47 +00:00
|
|
|
|
if (write(DEV, (char *) signature_page + offset, pagesize - offset)
|
|
|
|
|
!= pagesize - offset)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
die("unable to write signature page");
|
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
|
/*
|
|
|
|
|
* A subsequent swapon() will fail if the signature
|
|
|
|
|
* is not actually on disk. (This is a kernel bug.)
|
|
|
|
|
*/
|
|
|
|
|
if (fsync(DEV))
|
2000-02-08 19:58:47 +00:00
|
|
|
|
die("fsync failed");
|
2000-12-01 02:55:13 +00:00
|
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
}
|