blob: 8fe5d0293c0f913c989b71316964a297439b8a9c [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko2ab94032017-10-05 15:33:28 +02002/*
3 * mkswap.c - format swap device (Linux v1 only)
Eric Andersencc8ed391999-10-05 16:24:54 +00004 *
Rob Landleyd893b122006-07-16 08:17:03 +00005 * Copyright 2006 Rob Landley <rob@landley.net>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersencc8ed391999-10-05 16:24:54 +00008 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +01009//config:config MKSWAP
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "mkswap (6.3 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: The mkswap utility is used to configure a file or disk partition as
14//config: Linux swap space. This allows Linux to use the entire file or
15//config: partition as if it were additional RAM, which can greatly increase
16//config: the capability of low-memory machines. This additional memory is
17//config: much slower than real RAM, but can be very helpful at preventing your
18//config: applications being killed by the Linux out of memory (OOM) killer.
19//config: Once you have created swap space using 'mkswap' you need to enable
20//config: the swap space using the 'swapon' utility.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010021//config:
22//config:config FEATURE_MKSWAP_UUID
23//config: bool "UUID support"
24//config: default y
25//config: depends on MKSWAP
26//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020027//config: Generate swap spaces with universally unique identifiers.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010028
29//applet:IF_MKSWAP(APPLET(mkswap, BB_DIR_SBIN, BB_SUID_DROP))
30
31//kbuild:lib-$(CONFIG_MKSWAP) += mkswap.o
Pere Orga5bc8c002011-04-11 03:29:49 +020032
33//usage:#define mkswap_trivial_usage
34//usage: "[-L LBL] BLOCKDEV [KBYTES]"
35//usage:#define mkswap_full_usage "\n\n"
36//usage: "Prepare BLOCKDEV to be used as swap partition\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage: "\n -L LBL Label"
38
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000039#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020040#include "common_bufsiz.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000041
Denis Vlasenko85ff8622007-10-19 21:49:48 +000042#if ENABLE_SELINUX
43static void mkswap_selinux_setcontext(int fd, const char *path)
44{
45 struct stat stbuf;
46
47 if (!is_selinux_enabled())
48 return;
49
Denys Vlasenkoe66a2122011-01-05 11:45:44 +010050 xfstat(fd, &stbuf, path);
Denis Vlasenko85ff8622007-10-19 21:49:48 +000051 if (S_ISREG(stbuf.st_mode)) {
52 security_context_t newcon;
53 security_context_t oldcon = NULL;
54 context_t context;
55
Denis Vlasenko95842fb2008-04-25 08:43:01 +000056 if (fgetfilecon(fd, &oldcon) < 0) {
Denis Vlasenko85ff8622007-10-19 21:49:48 +000057 if (errno != ENODATA)
58 goto error;
59 if (matchpathcon(path, stbuf.st_mode, &oldcon) < 0)
60 goto error;
61 }
62 context = context_new(oldcon);
63 if (!context || context_type_set(context, "swapfile_t"))
64 goto error;
65 newcon = context_str(context);
66 if (!newcon)
67 goto error;
Bernhard Reutner-Fischerc6191e92008-04-24 10:44:31 +000068 /* fsetfilecon_raw is hidden */
69 if (strcmp(oldcon, newcon) != 0 && fsetfilecon(fd, newcon) < 0)
Denis Vlasenko85ff8622007-10-19 21:49:48 +000070 goto error;
71 if (ENABLE_FEATURE_CLEAN_UP) {
72 context_free(context);
73 freecon(oldcon);
74 }
75 }
76 return;
77 error:
James Byrne69374872019-07-02 11:35:03 +020078 bb_simple_perror_msg_and_die("SELinux relabeling failed");
Denis Vlasenko85ff8622007-10-19 21:49:48 +000079}
80#else
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +020081# define mkswap_selinux_setcontext(fd, path) ((void)0)
82#endif
83
Denys Vlasenko68c67462009-11-03 05:51:20 +010084/* from Linux 2.6.23 */
Denis Vlasenko9d96af22008-02-13 15:35:52 +000085/*
Denys Vlasenko68c67462009-11-03 05:51:20 +010086 * Magic header for a swap area. ... Note that the first
87 * kilobyte is reserved for boot loader or disk label stuff.
Denis Vlasenko9d96af22008-02-13 15:35:52 +000088 */
Denys Vlasenko68c67462009-11-03 05:51:20 +010089struct swap_header_v1 {
90/* char bootbits[1024]; Space for disklabel etc. */
91 uint32_t version; /* second kbyte, word 0 */
92 uint32_t last_page; /* 1 */
93 uint32_t nr_badpages; /* 2 */
94 char sws_uuid[16]; /* 3,4,5,6 */
95 char sws_volume[16]; /* 7,8,9,10 */
96 uint32_t padding[117]; /* 11..127 */
97 uint32_t badpages[1]; /* 128 */
98 /* total 129 32-bit words in 2nd kilobyte */
Denys Vlasenko12ca0802010-02-04 18:41:18 +010099} FIX_ALIASING;
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000100
101#define NWORDS 129
Denys Vlasenko68c67462009-11-03 05:51:20 +0100102#define hdr ((struct swap_header_v1*)bb_common_bufsiz1)
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200103#define INIT_G() do { setup_common_bufsiz(); } while (0)
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000104
Denys Vlasenko68c67462009-11-03 05:51:20 +0100105struct BUG_sizes {
106 char swap_header_v1_wrong[sizeof(*hdr) != (NWORDS * 4) ? -1 : 1];
107 char bufsiz1_is_too_small[COMMON_BUFSIZE < (NWORDS * 4) ? -1 : 1];
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000108};
109
110/* Stored without terminating NUL */
111static const char SWAPSPACE2[sizeof("SWAPSPACE2")-1] ALIGN1 = "SWAPSPACE2";
112
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000113int mkswap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko68c67462009-11-03 05:51:20 +0100114int mkswap_main(int argc UNUSED_PARAM, char **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115{
Denys Vlasenko68c67462009-11-03 05:51:20 +0100116 int fd;
117 unsigned pagesize;
Rob Landleyd893b122006-07-16 08:17:03 +0000118 off_t len;
Denys Vlasenko68c67462009-11-03 05:51:20 +0100119 const char *label = "";
Rob Landleyd893b122006-07-16 08:17:03 +0000120
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200121 INIT_G();
122
Denys Vlasenko40e7d252010-02-01 23:48:27 +0100123 /* TODO: -p PAGESZ, -U UUID */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200124 getopt32(argv, "^" "L:" "\0" "-1"/*at least one arg*/, &label);
Denys Vlasenko68c67462009-11-03 05:51:20 +0100125 argv += optind;
Rob Landleyd893b122006-07-16 08:17:03 +0000126
Denys Vlasenko68c67462009-11-03 05:51:20 +0100127 fd = xopen(argv[0], O_WRONLY);
Rob Landleyd893b122006-07-16 08:17:03 +0000128
Denys Vlasenko40e7d252010-02-01 23:48:27 +0100129 /* Figure out how big the device is */
130 len = get_volume_size_in_bytes(fd, argv[1], 1024, /*extend:*/ 1);
Denys Vlasenkoc7b858f2020-12-14 18:49:23 +0100131 pagesize = bb_getpagesize();
Denys Vlasenko68c67462009-11-03 05:51:20 +0100132 len -= pagesize;
Denys Vlasenko40e7d252010-02-01 23:48:27 +0100133
134 /* Announce our intentions */
Denys Vlasenko68c67462009-11-03 05:51:20 +0100135 printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", len);
136 mkswap_selinux_setcontext(fd, argv[0]);
137
Denys Vlasenko4e7dd3c2010-08-31 01:50:03 +0200138 /* hdr is zero-filled so far. Clear the first kbyte, or else
139 * mkswap-ing former FAT partition does NOT erase its signature.
140 *
141 * util-linux-ng 2.17.2 claims to erase it only if it does not see
142 * a partition table and is not run on whole disk. -f forces it.
143 */
144 xwrite(fd, hdr, 1024);
145
146 /* Fill the header. */
Denys Vlasenko68c67462009-11-03 05:51:20 +0100147 hdr->version = 1;
148 hdr->last_page = (uoff_t)len / pagesize;
149
Denys Vlasenkof5a295d2009-10-15 22:43:07 +0200150 if (ENABLE_FEATURE_MKSWAP_UUID) {
151 char uuid_string[32];
Denys Vlasenko68c67462009-11-03 05:51:20 +0100152 generate_uuid((void*)hdr->sws_uuid);
153 bin2hex(uuid_string, hdr->sws_uuid, 16);
Denys Vlasenkof5a295d2009-10-15 22:43:07 +0200154 /* f.e. UUID=dfd9c173-be52-4d27-99a5-c34c6c2ff55f */
155 printf("UUID=%.8s" "-%.4s-%.4s-%.4s-%.12s\n",
156 uuid_string,
157 uuid_string+8,
158 uuid_string+8+4,
159 uuid_string+8+4+4,
160 uuid_string+8+4+4+4
161 );
162 }
Denys Vlasenko68c67462009-11-03 05:51:20 +0100163 safe_strncpy(hdr->sws_volume, label, 16);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000164
Denys Vlasenko68c67462009-11-03 05:51:20 +0100165 /* Write the header. Sync to disk because some kernel versions check
166 * signature on disk (not in cache) during swapon. */
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000167 xwrite(fd, hdr, NWORDS * 4);
Denis Vlasenko85ff8622007-10-19 21:49:48 +0000168 xlseek(fd, pagesize - 10, SEEK_SET);
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000169 xwrite(fd, SWAPSPACE2, 10);
Rob Landleyd893b122006-07-16 08:17:03 +0000170 fsync(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000171
Denys Vlasenko68c67462009-11-03 05:51:20 +0100172 if (ENABLE_FEATURE_CLEAN_UP)
173 close(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000174
Rob Landleyd893b122006-07-16 08:17:03 +0000175 return 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000176}