Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 2 | /* mkswap.c - format swap device (Linux v1 only) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 3 | * |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 4 | * Copyright 2006 Rob Landley <rob@landley.net> |
| 5 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 7 | */ |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 8 | #include "libbb.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 9 | |
Denis Vlasenko | 85ff862 | 2007-10-19 21:49:48 +0000 | [diff] [blame] | 10 | #if ENABLE_SELINUX |
| 11 | static void mkswap_selinux_setcontext(int fd, const char *path) |
| 12 | { |
| 13 | struct stat stbuf; |
| 14 | |
| 15 | if (!is_selinux_enabled()) |
| 16 | return; |
| 17 | |
Denys Vlasenko | 8d3e225 | 2010-08-31 12:42:06 +0200 | [diff] [blame] | 18 | xfstat(fd, &stbuf, argv[0]); |
Denis Vlasenko | 85ff862 | 2007-10-19 21:49:48 +0000 | [diff] [blame] | 19 | if (S_ISREG(stbuf.st_mode)) { |
| 20 | security_context_t newcon; |
| 21 | security_context_t oldcon = NULL; |
| 22 | context_t context; |
| 23 | |
Denis Vlasenko | 95842fb | 2008-04-25 08:43:01 +0000 | [diff] [blame] | 24 | if (fgetfilecon(fd, &oldcon) < 0) { |
Denis Vlasenko | 85ff862 | 2007-10-19 21:49:48 +0000 | [diff] [blame] | 25 | if (errno != ENODATA) |
| 26 | goto error; |
| 27 | if (matchpathcon(path, stbuf.st_mode, &oldcon) < 0) |
| 28 | goto error; |
| 29 | } |
| 30 | context = context_new(oldcon); |
| 31 | if (!context || context_type_set(context, "swapfile_t")) |
| 32 | goto error; |
| 33 | newcon = context_str(context); |
| 34 | if (!newcon) |
| 35 | goto error; |
Bernhard Reutner-Fischer | c6191e9 | 2008-04-24 10:44:31 +0000 | [diff] [blame] | 36 | /* fsetfilecon_raw is hidden */ |
| 37 | if (strcmp(oldcon, newcon) != 0 && fsetfilecon(fd, newcon) < 0) |
Denis Vlasenko | 85ff862 | 2007-10-19 21:49:48 +0000 | [diff] [blame] | 38 | goto error; |
| 39 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 40 | context_free(context); |
| 41 | freecon(oldcon); |
| 42 | } |
| 43 | } |
| 44 | return; |
| 45 | error: |
| 46 | bb_perror_msg_and_die("SELinux relabeling failed"); |
| 47 | } |
| 48 | #else |
Denys Vlasenko | c9f280c | 2009-06-18 21:55:47 +0200 | [diff] [blame] | 49 | # define mkswap_selinux_setcontext(fd, path) ((void)0) |
| 50 | #endif |
| 51 | |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 52 | /* from Linux 2.6.23 */ |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 53 | /* |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 54 | * Magic header for a swap area. ... Note that the first |
| 55 | * kilobyte is reserved for boot loader or disk label stuff. |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 56 | */ |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 57 | struct swap_header_v1 { |
| 58 | /* char bootbits[1024]; Space for disklabel etc. */ |
| 59 | uint32_t version; /* second kbyte, word 0 */ |
| 60 | uint32_t last_page; /* 1 */ |
| 61 | uint32_t nr_badpages; /* 2 */ |
| 62 | char sws_uuid[16]; /* 3,4,5,6 */ |
| 63 | char sws_volume[16]; /* 7,8,9,10 */ |
| 64 | uint32_t padding[117]; /* 11..127 */ |
| 65 | uint32_t badpages[1]; /* 128 */ |
| 66 | /* total 129 32-bit words in 2nd kilobyte */ |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 67 | } FIX_ALIASING; |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 68 | |
| 69 | #define NWORDS 129 |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 70 | #define hdr ((struct swap_header_v1*)bb_common_bufsiz1) |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 71 | |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 72 | struct BUG_sizes { |
| 73 | char swap_header_v1_wrong[sizeof(*hdr) != (NWORDS * 4) ? -1 : 1]; |
| 74 | char bufsiz1_is_too_small[COMMON_BUFSIZE < (NWORDS * 4) ? -1 : 1]; |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | /* Stored without terminating NUL */ |
| 78 | static const char SWAPSPACE2[sizeof("SWAPSPACE2")-1] ALIGN1 = "SWAPSPACE2"; |
| 79 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 80 | int mkswap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 81 | int mkswap_main(int argc UNUSED_PARAM, char **argv) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 82 | { |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 83 | int fd; |
| 84 | unsigned pagesize; |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 85 | off_t len; |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 86 | const char *label = ""; |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 87 | |
Denys Vlasenko | 40e7d25 | 2010-02-01 23:48:27 +0100 | [diff] [blame] | 88 | opt_complementary = "-1"; /* at least one param */ |
| 89 | /* TODO: -p PAGESZ, -U UUID */ |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 90 | getopt32(argv, "L:", &label); |
| 91 | argv += optind; |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 92 | |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 93 | fd = xopen(argv[0], O_WRONLY); |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 94 | |
Denys Vlasenko | 40e7d25 | 2010-02-01 23:48:27 +0100 | [diff] [blame] | 95 | /* Figure out how big the device is */ |
| 96 | len = get_volume_size_in_bytes(fd, argv[1], 1024, /*extend:*/ 1); |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 97 | pagesize = getpagesize(); |
| 98 | len -= pagesize; |
Denys Vlasenko | 40e7d25 | 2010-02-01 23:48:27 +0100 | [diff] [blame] | 99 | |
| 100 | /* Announce our intentions */ |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 101 | printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", len); |
| 102 | mkswap_selinux_setcontext(fd, argv[0]); |
| 103 | |
Denys Vlasenko | 4e7dd3c | 2010-08-31 01:50:03 +0200 | [diff] [blame] | 104 | /* hdr is zero-filled so far. Clear the first kbyte, or else |
| 105 | * mkswap-ing former FAT partition does NOT erase its signature. |
| 106 | * |
| 107 | * util-linux-ng 2.17.2 claims to erase it only if it does not see |
| 108 | * a partition table and is not run on whole disk. -f forces it. |
| 109 | */ |
| 110 | xwrite(fd, hdr, 1024); |
| 111 | |
| 112 | /* Fill the header. */ |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 113 | hdr->version = 1; |
| 114 | hdr->last_page = (uoff_t)len / pagesize; |
| 115 | |
Denys Vlasenko | f5a295d | 2009-10-15 22:43:07 +0200 | [diff] [blame] | 116 | if (ENABLE_FEATURE_MKSWAP_UUID) { |
| 117 | char uuid_string[32]; |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 118 | generate_uuid((void*)hdr->sws_uuid); |
| 119 | bin2hex(uuid_string, hdr->sws_uuid, 16); |
Denys Vlasenko | f5a295d | 2009-10-15 22:43:07 +0200 | [diff] [blame] | 120 | /* f.e. UUID=dfd9c173-be52-4d27-99a5-c34c6c2ff55f */ |
| 121 | printf("UUID=%.8s" "-%.4s-%.4s-%.4s-%.12s\n", |
| 122 | uuid_string, |
| 123 | uuid_string+8, |
| 124 | uuid_string+8+4, |
| 125 | uuid_string+8+4+4, |
| 126 | uuid_string+8+4+4+4 |
| 127 | ); |
| 128 | } |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 129 | safe_strncpy(hdr->sws_volume, label, 16); |
Eric Andersen | e77ae3a | 1999-10-19 20:03:34 +0000 | [diff] [blame] | 130 | |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 131 | /* Write the header. Sync to disk because some kernel versions check |
| 132 | * signature on disk (not in cache) during swapon. */ |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 133 | xwrite(fd, hdr, NWORDS * 4); |
Denis Vlasenko | 85ff862 | 2007-10-19 21:49:48 +0000 | [diff] [blame] | 134 | xlseek(fd, pagesize - 10, SEEK_SET); |
Denis Vlasenko | 9d96af2 | 2008-02-13 15:35:52 +0000 | [diff] [blame] | 135 | xwrite(fd, SWAPSPACE2, 10); |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 136 | fsync(fd); |
Eric Andersen | e77ae3a | 1999-10-19 20:03:34 +0000 | [diff] [blame] | 137 | |
Denys Vlasenko | 68c6746 | 2009-11-03 05:51:20 +0100 | [diff] [blame] | 138 | if (ENABLE_FEATURE_CLEAN_UP) |
| 139 | close(fd); |
Eric Andersen | e77ae3a | 1999-10-19 20:03:34 +0000 | [diff] [blame] | 140 | |
Rob Landley | d893b12 | 2006-07-16 08:17:03 +0000 | [diff] [blame] | 141 | return 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 142 | } |