blob: f71884340e7d318aa3acb0e7d5db103764d81bb5 [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 *
Rob Landleye9a7a622006-09-22 02:52:41 +00006 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +00007 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +00008#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +00009
Denis Vlasenko85ff8622007-10-19 21:49:48 +000010#if ENABLE_SELINUX
11static void mkswap_selinux_setcontext(int fd, const char *path)
12{
13 struct stat stbuf;
14
15 if (!is_selinux_enabled())
16 return;
17
18 if (fstat(fd, &stbuf) < 0)
19 bb_perror_msg_and_die("fstat failed");
20 if (S_ISREG(stbuf.st_mode)) {
21 security_context_t newcon;
22 security_context_t oldcon = NULL;
23 context_t context;
24
Denis Vlasenko95842fb2008-04-25 08:43:01 +000025 if (fgetfilecon(fd, &oldcon) < 0) {
Denis Vlasenko85ff8622007-10-19 21:49:48 +000026 if (errno != ENODATA)
27 goto error;
28 if (matchpathcon(path, stbuf.st_mode, &oldcon) < 0)
29 goto error;
30 }
31 context = context_new(oldcon);
32 if (!context || context_type_set(context, "swapfile_t"))
33 goto error;
34 newcon = context_str(context);
35 if (!newcon)
36 goto error;
Bernhard Reutner-Fischerc6191e92008-04-24 10:44:31 +000037 /* fsetfilecon_raw is hidden */
38 if (strcmp(oldcon, newcon) != 0 && fsetfilecon(fd, newcon) < 0)
Denis Vlasenko85ff8622007-10-19 21:49:48 +000039 goto error;
40 if (ENABLE_FEATURE_CLEAN_UP) {
41 context_free(context);
42 freecon(oldcon);
43 }
44 }
45 return;
46 error:
47 bb_perror_msg_and_die("SELinux relabeling failed");
48}
49#else
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +020050# define mkswap_selinux_setcontext(fd, path) ((void)0)
51#endif
52
Denys Vlasenkobeca96f2009-06-19 13:14:48 +020053#if ENABLE_FEATURE_MKSWAP_UUID
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +020054static void mkswap_generate_uuid(uint8_t *buf)
55{
Denys Vlasenkoe1e22732009-06-19 09:49:01 +020056 /* http://www.ietf.org/rfc/rfc4122.txt
57 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
58 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
59 * | time_low |
60 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
61 * | time_mid | time_hi_and_version |
62 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenkob96159d2009-06-19 11:00:52 +020063 * |clk_seq_and_variant | node (0-1) |
Denys Vlasenkoe1e22732009-06-19 09:49:01 +020064 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
65 * | node (2-5) |
66 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
67 * IOW, uuid has this layout:
68 * uint32_t time_low (big endian)
69 * uint16_t time_mid (big endian)
70 * uint16_t time_hi_and_version (big endian)
71 * version is a 4-bit field:
Denys Vlasenkob96159d2009-06-19 11:00:52 +020072 * 1 Time-based
73 * 2 DCE Security, with embedded POSIX UIDs
74 * 3 Name-based (MD5)
75 * 4 Randomly generated
76 * 5 Name-based (SHA-1)
Denys Vlasenkoe1e22732009-06-19 09:49:01 +020077 * uint16_t clk_seq_and_variant (big endian)
78 * variant is a 3-bit field:
79 * 0xx Reserved, NCS backward compatibility
80 * 10x The variant specified in rfc4122
81 * 110 Reserved, Microsoft backward compatibility
82 * 111 Reserved for future definition
83 * uint8_t node[6]
84 *
85 * For version 4, these bits are set/cleared:
86 * time_hi_and_version & 0x0fff | 0x4000
87 * clk_seq_and_variant & 0x3fff | 0x8000
88 */
Denys Vlasenkob96159d2009-06-19 11:00:52 +020089 pid_t pid;
90 int i;
91 char uuid_string[32];
Denys Vlasenkoe1e22732009-06-19 09:49:01 +020092
93 i = open("/dev/urandom", O_RDONLY);
94 if (i >= 0) {
95 read(i, buf, 16);
96 close(i);
97 }
98 /* Paranoia. /dev/urandom may be missing.
99 * rand() is guaranteed to generate at least [0, 2^15) range,
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +0200100 * but lowest bits in some libc are not so "random". */
Denys Vlasenkoe1e22732009-06-19 09:49:01 +0200101 srand(monotonic_us());
102 pid = getpid();
103 while (1) {
104 for (i = 0; i < 16; i++)
105 buf[i] ^= rand() >> 5;
106 if (pid == 0)
107 break;
108 srand(pid);
109 pid = 0;
110 }
111
Denys Vlasenkob96159d2009-06-19 11:00:52 +0200112 /* version = 4 */
113 buf[4 + 2 ] = (buf[4 + 2 ] & 0x0f) | 0x40;
114 /* variant = 10x */
115 buf[4 + 2 + 2] = (buf[4 + 2 + 2] & 0x3f) | 0x80;
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +0200116
117 bin2hex(uuid_string, (void*) buf, 16);
118 /* f.e. UUID=dfd9c173-be52-4d27-99a5-c34c6c2ff55f */
119 printf("UUID=%.8s" "-%.4s-%.4s-%.4s-%.12s\n",
120 uuid_string,
121 uuid_string+8,
122 uuid_string+8+4,
123 uuid_string+8+4+4,
124 uuid_string+8+4+4+4
125 );
126}
127#else
128# define mkswap_generate_uuid(buf) ((void)0)
Denis Vlasenko85ff8622007-10-19 21:49:48 +0000129#endif
130
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000131#if 0 /* from Linux 2.6.23 */
132/*
133 * Magic header for a swap area. The first part of the union is
134 * what the swap magic looks like for the old (limited to 128MB)
135 * swap area format, the second part of the union adds - in the
136 * old reserved area - some extra information. Note that the first
137 * kilobyte is reserved for boot loader or disk label stuff...
138 */
139union swap_header {
140 struct {
141 char reserved[PAGE_SIZE - 10];
142 char magic[10]; /* SWAP-SPACE or SWAPSPACE2 */
143 } magic;
144 struct {
145 char bootbits[1024]; /* Space for disklabel etc. */
146 __u32 version; /* second kbyte, word 0 */
147 __u32 last_page; /* 1 */
148 __u32 nr_badpages; /* 2 */
149 unsigned char sws_uuid[16]; /* 3,4,5,6 */
150 unsigned char sws_volume[16]; /* 7,8,9,10 */
151 __u32 padding[117]; /* 11..127 */
152 __u32 badpages[1]; /* 128, total 129 32-bit words */
153 } info;
154};
155#endif
156
157#define NWORDS 129
158#define hdr ((uint32_t*)(&bb_common_bufsiz1))
159
160struct BUG_bufsiz1_is_too_small {
161 char BUG_bufsiz1_is_too_small[COMMON_BUFSIZE < (NWORDS * 4) ? -1 : 1];
162};
163
164/* Stored without terminating NUL */
165static const char SWAPSPACE2[sizeof("SWAPSPACE2")-1] ALIGN1 = "SWAPSPACE2";
166
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000167int mkswap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000168int mkswap_main(int argc, char **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169{
Rob Landleyd893b122006-07-16 08:17:03 +0000170 int fd, pagesize;
171 off_t len;
Rob Landleyd893b122006-07-16 08:17:03 +0000172
173 // No options supported.
174
Denis Vlasenkod398eca2006-11-24 15:38:03 +0000175 if (argc != 2) bb_show_usage();
Rob Landleyd893b122006-07-16 08:17:03 +0000176
177 // Figure out how big the device is and announce our intentions.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000178
Denis Vlasenkod398eca2006-11-24 15:38:03 +0000179 fd = xopen(argv[1], O_RDWR);
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000180 /* fdlength was reported to be unreliable - use seek */
181 len = xlseek(fd, 0, SEEK_END);
Denis Vlasenko32d49bc2008-02-03 23:52:41 +0000182#if ENABLE_SELINUX
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000183 xlseek(fd, 0, SEEK_SET);
Denis Vlasenko32d49bc2008-02-03 23:52:41 +0000184#endif
Eric Andersene77ae3a1999-10-19 20:03:34 +0000185 pagesize = getpagesize();
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000186 printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n",
Denis Vlasenkod398eca2006-11-24 15:38:03 +0000187 len - pagesize);
Denis Vlasenko85ff8622007-10-19 21:49:48 +0000188 mkswap_selinux_setcontext(fd, argv[1]);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000189
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000190 // Make a header. hdr is zero-filled so far...
Rob Landleyd893b122006-07-16 08:17:03 +0000191 hdr[0] = 1;
192 hdr[1] = (len / pagesize) - 1;
Denys Vlasenkoc9f280c2009-06-18 21:55:47 +0200193 mkswap_generate_uuid((void*) &hdr[3]);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000194
Rob Landleyd893b122006-07-16 08:17:03 +0000195 // Write the header. Sync to disk because some kernel versions check
196 // signature on disk (not in cache) during swapon.
Rob Landleyd893b122006-07-16 08:17:03 +0000197 xlseek(fd, 1024, SEEK_SET);
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000198 xwrite(fd, hdr, NWORDS * 4);
Denis Vlasenko85ff8622007-10-19 21:49:48 +0000199 xlseek(fd, pagesize - 10, SEEK_SET);
Denis Vlasenko9d96af22008-02-13 15:35:52 +0000200 xwrite(fd, SWAPSPACE2, 10);
Rob Landleyd893b122006-07-16 08:17:03 +0000201 fsync(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000202
Rob Landleyd893b122006-07-16 08:17:03 +0000203 if (ENABLE_FEATURE_CLEAN_UP) close(fd);
Eric Andersene77ae3a1999-10-19 20:03:34 +0000204
Rob Landleyd893b122006-07-16 08:17:03 +0000205 return 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000206}