blob: dcb53f0087fbfbf02d6184aebc0284dcce494803 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Rob Landleyd893b122006-07-16 08:17:03 +00002/* mkswap.c - format swap device (Linux v1 only)
Eric Andersencc8ed391999-10-05 16:24:54 +00003 *
Rob Landleyd893b122006-07-16 08:17:03 +00004 * Copyright 2006 Rob Landley <rob@landley.net>
5 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersencc8ed391999-10-05 16:24:54 +00007 */
Pere Orga5bc8c002011-04-11 03:29:49 +02008
9//usage:#define mkswap_trivial_usage
10//usage: "[-L LBL] BLOCKDEV [KBYTES]"
11//usage:#define mkswap_full_usage "\n\n"
12//usage: "Prepare BLOCKDEV to be used as swap partition\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020013//usage: "\n -L LBL Label"
14
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020016#include "common_bufsiz.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000017
Denis Vlasenko85ff8622007-10-19 21:49:48 +000018#if ENABLE_SELINUX
19static void mkswap_selinux_setcontext(int fd, const char *path)
20{
21 struct stat stbuf;
22
23 if (!is_selinux_enabled())
24 return;
25
Denys Vlasenkoe66a2122011-01-05 11:45:44 +010026 xfstat(fd, &stbuf, path);
Denis Vlasenko85ff8622007-10-19 21:49:48 +000027 if (S_ISREG(stbuf.st_mode)) {
28 security_context_t newcon;
29 security_context_t oldcon = NULL;
30 context_t context;
31
Denis Vlasenko95842fb2008-04-25 08:43:01 +000032 if (fgetfilecon(fd, &oldcon) < 0) {
Denis Vlasenko85ff8622007-10-19 21:49:48 +000033 if (errno != ENODATA)
34 goto error;
35 if (matchpathcon(path, stbuf.st_mode, &oldcon) < 0)
36 goto error;
37 }
38 context = context_new(oldcon);
39 if (!context || context_type_set(context, "swapfile_t"))
40 goto error;
41 newcon = context_str(context);
42 if (!newcon)
43 goto error;
Bernhard Reutner-Fischerc6191e92008-04-24 10:44:31 +000044 /* fsetfilecon_raw is hidden */
45 if (strcmp(oldcon, newcon) != 0 && fsetfilecon(fd, newcon) < 0)
Denis Vlasenko85ff8622007-10-19 21:49:48 +000046 goto error;
47 if (ENABLE_FEATURE_CLEAN_UP) {
48 context_free(context);
49 freecon(oldcon);
50 }
51 }
52 return;
53 error:
54 bb_perror_msg_and_die("SELinux relabeling failed");
55}
56#else
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +020057# define mkswap_selinux_setcontext(fd, path) ((void)0)
58#endif
59
Denys Vlasenko68c67462009-11-03 05:51:20 +010060/* from Linux 2.6.23 */
Denis Vlasenko9d96af22008-02-13 15:35:52 +000061/*
Denys Vlasenko68c67462009-11-03 05:51:20 +010062 * Magic header for a swap area. ... Note that the first
63 * kilobyte is reserved for boot loader or disk label stuff.
Denis Vlasenko9d96af22008-02-13 15:35:52 +000064 */
Denys Vlasenko68c67462009-11-03 05:51:20 +010065struct swap_header_v1 {
66/* char bootbits[1024]; Space for disklabel etc. */
67 uint32_t version; /* second kbyte, word 0 */
68 uint32_t last_page; /* 1 */
69 uint32_t nr_badpages; /* 2 */
70 char sws_uuid[16]; /* 3,4,5,6 */
71 char sws_volume[16]; /* 7,8,9,10 */
72 uint32_t padding[117]; /* 11..127 */
73 uint32_t badpages[1]; /* 128 */
74 /* total 129 32-bit words in 2nd kilobyte */
Denys Vlasenko12ca0802010-02-04 18:41:18 +010075} FIX_ALIASING;
Denis Vlasenko9d96af22008-02-13 15:35:52 +000076
77#define NWORDS 129
Denys Vlasenko68c67462009-11-03 05:51:20 +010078#define hdr ((struct swap_header_v1*)bb_common_bufsiz1)
Denys Vlasenko47cfbf32016-04-21 18:18:48 +020079#define INIT_G() do { setup_common_bufsiz(); } while (0)
Denis Vlasenko9d96af22008-02-13 15:35:52 +000080
Denys Vlasenko68c67462009-11-03 05:51:20 +010081struct BUG_sizes {
82 char swap_header_v1_wrong[sizeof(*hdr) != (NWORDS * 4) ? -1 : 1];
83 char bufsiz1_is_too_small[COMMON_BUFSIZE < (NWORDS * 4) ? -1 : 1];
Denis Vlasenko9d96af22008-02-13 15:35:52 +000084};
85
86/* Stored without terminating NUL */
87static const char SWAPSPACE2[sizeof("SWAPSPACE2")-1] ALIGN1 = "SWAPSPACE2";
88
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000089int mkswap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko68c67462009-11-03 05:51:20 +010090int mkswap_main(int argc UNUSED_PARAM, char **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +000091{
Denys Vlasenko68c67462009-11-03 05:51:20 +010092 int fd;
93 unsigned pagesize;
Rob Landleyd893b122006-07-16 08:17:03 +000094 off_t len;
Denys Vlasenko68c67462009-11-03 05:51:20 +010095 const char *label = "";
Rob Landleyd893b122006-07-16 08:17:03 +000096
Denys Vlasenko47cfbf32016-04-21 18:18:48 +020097 INIT_G();
98
Denys Vlasenko40e7d252010-02-01 23:48:27 +010099 opt_complementary = "-1"; /* at least one param */
100 /* TODO: -p PAGESZ, -U UUID */
Denys Vlasenko68c67462009-11-03 05:51:20 +0100101 getopt32(argv, "L:", &label);
102 argv += optind;
Rob Landleyd893b122006-07-16 08:17:03 +0000103
Denys Vlasenko68c67462009-11-03 05:51:20 +0100104 fd = xopen(argv[0], O_WRONLY);
Rob Landleyd893b122006-07-16 08:17:03 +0000105
Denys Vlasenko40e7d252010-02-01 23:48:27 +0100106 /* Figure out how big the device is */
107 len = get_volume_size_in_bytes(fd, argv[1], 1024, /*extend:*/ 1);
Denys Vlasenko68c67462009-11-03 05:51:20 +0100108 pagesize = getpagesize();
109 len -= pagesize;
Denys Vlasenko40e7d252010-02-01 23:48:27 +0100110
111 /* Announce our intentions */
Denys Vlasenko68c67462009-11-03 05:51:20 +0100112 printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", len);
113 mkswap_selinux_setcontext(fd, argv[0]);
114
Denys Vlasenko4e7dd3c2010-08-31 01:50:03 +0200115 /* hdr is zero-filled so far. Clear the first kbyte, or else
116 * mkswap-ing former FAT partition does NOT erase its signature.
117 *
118 * util-linux-ng 2.17.2 claims to erase it only if it does not see
119 * a partition table and is not run on whole disk. -f forces it.
120 */
121 xwrite(fd, hdr, 1024);
122
123 /* Fill the header. */
Denys Vlasenko68c67462009-11-03 05:51:20 +0100124 hdr->version = 1;
125 hdr->last_page = (uoff_t)len / pagesize;
126
Denys Vlasenkof5a295d2009-10-15 22:43:07 +0200127 if (ENABLE_FEATURE_MKSWAP_UUID) {
128 char uuid_string[32];
Denys Vlasenko68c67462009-11-03 05:51:20 +0100129 generate_uuid((void*)hdr->sws_uuid);
130 bin2hex(uuid_string, hdr->sws_uuid, 16);
Denys Vlasenkof5a295d2009-10-15 22:43:07 +0200131 /* f.e. UUID=dfd9c173-be52-4d27-99a5-c34c6c2ff55f */
132 printf("UUID=%.8s" "-%.4s-%.4s-%.4s-%.12s\n",
133 uuid_string,
134 uuid_string+8,
135 uuid_string+8+4,
136 uuid_string+8+4+4,
137 uuid_string+8+4+4+4
138 );
139 }
Denys Vlasenko68c67462009-11-03 05:51:20 +0100140 safe_strncpy(hdr->sws_volume, label, 16);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000141
Denys Vlasenko68c67462009-11-03 05:51:20 +0100142 /* Write the header. Sync to disk because some kernel versions check
143 * signature on disk (not in cache) during swapon. */
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000144 xwrite(fd, hdr, NWORDS * 4);
Denis Vlasenko85ff8622007-10-19 21:49:48 +0000145 xlseek(fd, pagesize - 10, SEEK_SET);
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000146 xwrite(fd, SWAPSPACE2, 10);
Rob Landleyd893b122006-07-16 08:17:03 +0000147 fsync(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000148
Denys Vlasenko68c67462009-11-03 05:51:20 +0100149 if (ENABLE_FEATURE_CLEAN_UP)
150 close(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000151
Rob Landleyd893b122006-07-16 08:17:03 +0000152 return 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000153}