016ea90
--- libntfs-3g/bootsect.c.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ libntfs-3g/bootsect.c	2018-05-07 09:11:13.004710800 +0200
016ea90
@@ -38,6 +38,7 @@ 
016ea90
 #include <errno.h>
016ea90
 #endif
016ea90
 
016ea90
+#include "param.h"
016ea90
 #include "compat.h"
016ea90
 #include "bootsect.h"
016ea90
 #include "debug.h"
016ea90
@@ -61,6 +62,7 @@ 
016ea90
 {
016ea90
 	u32 i;
016ea90
 	BOOL ret = FALSE;
016ea90
+	u16 sectors_per_cluster;
016ea90
 
016ea90
 	ntfs_log_debug("Beginning bootsector check.\n");
016ea90
 
016ea90
@@ -83,15 +85,27 @@ 
016ea90
 	case 1: case 2: case 4: case 8: case 16: case 32: case 64: case 128:
016ea90
 		break;
016ea90
 	default:
016ea90
-		ntfs_log_error("Unexpected sectors per cluster value (%d).\n",
016ea90
-			       b->bpb.sectors_per_cluster);
016ea90
-		goto not_ntfs;
016ea90
+		if ((b->bpb.sectors_per_cluster < 240)
016ea90
+		    || (b->bpb.sectors_per_cluster > 249)) {
016ea90
+			if (b->bpb.sectors_per_cluster > 128)
016ea90
+				ntfs_log_error("Unexpected sectors"
016ea90
+					" per cluster value (code 0x%x)\n",
016ea90
+					b->bpb.sectors_per_cluster);
016ea90
+			else
016ea90
+				ntfs_log_error("Unexpected sectors"
016ea90
+					" per cluster value (%d).\n",
016ea90
+					b->bpb.sectors_per_cluster);
016ea90
+			goto not_ntfs;
016ea90
+		}
016ea90
 	}
016ea90
 
016ea90
 	ntfs_log_debug("Checking cluster size.\n");
016ea90
-	i = (u32)le16_to_cpu(b->bpb.bytes_per_sector) * 
016ea90
-		b->bpb.sectors_per_cluster;
016ea90
-	if (i > 65536) {
016ea90
+	if (b->bpb.sectors_per_cluster > 128)
016ea90
+		sectors_per_cluster = 1 << (256 - b->bpb.sectors_per_cluster);
016ea90
+	else
016ea90
+		sectors_per_cluster = b->bpb.sectors_per_cluster;
016ea90
+	i = (u32)le16_to_cpu(b->bpb.bytes_per_sector) * sectors_per_cluster;
016ea90
+	if (i > NTFS_MAX_CLUSTER_SIZE) {
016ea90
 		ntfs_log_error("Unexpected cluster size (%d).\n", i);
016ea90
 		goto not_ntfs;
016ea90
 	}
016ea90
@@ -171,7 +185,7 @@ 
016ea90
 int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *bs)
016ea90
 {
016ea90
 	s64 sectors;
016ea90
-	u8  sectors_per_cluster;
016ea90
+	u16  sectors_per_cluster;
016ea90
 	s8  c;
016ea90
 
016ea90
 	/* We return -1 with errno = EINVAL on error. */
016ea90
@@ -186,7 +200,10 @@ 
016ea90
 	 * below or equal the number_of_clusters) really belong in the
016ea90
 	 * ntfs_boot_sector_is_ntfs but in this way we can just do this once.
016ea90
 	 */
016ea90
-	sectors_per_cluster = bs->bpb.sectors_per_cluster;
016ea90
+	if (bs->bpb.sectors_per_cluster > 128)
016ea90
+		sectors_per_cluster = 1 << (256 - bs->bpb.sectors_per_cluster);
016ea90
+	else
016ea90
+		sectors_per_cluster = bs->bpb.sectors_per_cluster;
016ea90
 	ntfs_log_debug("SectorsPerCluster = 0x%x\n", sectors_per_cluster);
016ea90
 	if (sectors_per_cluster & (sectors_per_cluster - 1)) {
016ea90
 		ntfs_log_error("sectors_per_cluster (%d) is not a power of 2."
016ea90
--- ntfsprogs/mkntfs.8.in.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ ntfsprogs/mkntfs.8.in	2018-05-07 09:11:13.014132400 +0200
016ea90
@@ -132,7 +132,7 @@ 
016ea90
 .TP
016ea90
 \fB\-c\fR, \fB\-\-cluster\-size\fR BYTES
016ea90
 Specify the size of clusters in bytes. Valid cluster size values are powers of
016ea90
-two, with at least 256, and at most 65536 bytes per cluster. If omitted,
016ea90
+two, with at least 256, and at most 2097152 bytes (2MB) per cluster. If omitted,
016ea90
 .B mkntfs
016ea90
 uses 4096 bytes as the default cluster size.
016ea90
 .sp
016ea90
--- ntfsprogs/mkntfs.c.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ ntfsprogs/mkntfs.c	2018-05-07 09:11:13.035522300 +0200
016ea90
@@ -6,7 +6,7 @@ 
016ea90
  * Copyright (c) 2002-2006 Szabolcs Szakacsits
016ea90
  * Copyright (c) 2005      Erik Sornes
016ea90
  * Copyright (c) 2007      Yura Pakhuchiy
016ea90
- * Copyright (c) 2010-2014 Jean-Pierre Andre
016ea90
+ * Copyright (c) 2010-2018 Jean-Pierre Andre
016ea90
  *
016ea90
  * This utility will create an NTFS 1.2 or 3.1 volume on a user
016ea90
  * specified (block) device.
016ea90
@@ -119,6 +119,7 @@ 
016ea90
 #	endif
016ea90
 #endif
016ea90
 
016ea90
+#include "param.h"
016ea90
 #include "security.h"
016ea90
 #include "types.h"
016ea90
 #include "attrib.h"
016ea90
@@ -287,7 +288,7 @@ 
016ea90
 	ntfs_log_info("Copyright (c) 2002-2006 Szabolcs Szakacsits\n");
016ea90
 	ntfs_log_info("Copyright (c) 2005      Erik Sornes\n");
016ea90
 	ntfs_log_info("Copyright (c) 2007      Yura Pakhuchiy\n");
016ea90
-	ntfs_log_info("Copyright (c) 2010-2014 Jean-Pierre Andre\n");
016ea90
+	ntfs_log_info("Copyright (c) 2010-2018 Jean-Pierre Andre\n");
016ea90
 	ntfs_log_info("\n%s\n%s%s\n", ntfs_gpl, ntfs_bugs, ntfs_home);
016ea90
 }
016ea90
 
016ea90
@@ -3719,11 +3720,11 @@ 
016ea90
 		/*
016ea90
 		 * For huge volumes, grow the cluster size until the number of
016ea90
 		 * clusters fits into 32 bits or the cluster size exceeds the
016ea90
-		 * maximum limit of 64kiB.
016ea90
+		 * maximum limit of NTFS_MAX_CLUSTER_SIZE.
016ea90
 		 */
016ea90
 		while (volume_size >> (ffs(vol->cluster_size) - 1 + 32)) {
016ea90
 			vol->cluster_size <<= 1;
016ea90
-			if (vol->cluster_size > 65535) {
016ea90
+			if (vol->cluster_size >= NTFS_MAX_CLUSTER_SIZE) {
016ea90
 				ntfs_log_error("Device is too large to hold an "
016ea90
 						"NTFS volume (maximum size is "
016ea90
 						"256TiB).\n");
016ea90
@@ -3744,15 +3745,18 @@ 
016ea90
 				"to, or larger than, the sector size.\n");
016ea90
 		return FALSE;
016ea90
 	}
016ea90
-	if (vol->cluster_size > 128 * (u32)opts.sector_size) {
016ea90
+		/* Before Windows 10 Creators, the limit was 128 */
016ea90
+	if (vol->cluster_size > 4096 * (u32)opts.sector_size) {
016ea90
 		ntfs_log_error("The cluster size is invalid.  It cannot be "
016ea90
-				"more that 128 times the size of the sector "
016ea90
+				"more that 4096 times the size of the sector "
016ea90
 				"size.\n");
016ea90
 		return FALSE;
016ea90
 	}
016ea90
-	if (vol->cluster_size > 65536) {
016ea90
+	if (vol->cluster_size > NTFS_MAX_CLUSTER_SIZE) {
016ea90
 		ntfs_log_error("The cluster size is invalid.  The maximum "
016ea90
-			"cluster size is 65536 bytes (64kiB).\n");
016ea90
+			"cluster size is %lu bytes (%lukiB).\n",
016ea90
+			(unsigned long)NTFS_MAX_CLUSTER_SIZE,
016ea90
+			(unsigned long)(NTFS_MAX_CLUSTER_SIZE >> 10));
016ea90
 		return FALSE;
016ea90
 	}
016ea90
 	vol->cluster_size_bits = ffs(vol->cluster_size) - 1;
016ea90
@@ -4387,6 +4391,7 @@ 
016ea90
 	u8 *sd;
016ea90
 	FILE_ATTR_FLAGS extend_flags;
016ea90
 	VOLUME_FLAGS volume_flags = const_cpu_to_le16(0);
016ea90
+	int sectors_per_cluster;
016ea90
 	int nr_sysfiles;
016ea90
 	int buf_sds_first_size;
016ea90
 	char *buf_sds;
016ea90
@@ -4639,8 +4644,11 @@ 
016ea90
 	 * already inserted, so no need to worry about these things.
016ea90
 	 */
016ea90
 	bs->bpb.bytes_per_sector = cpu_to_le16(opts.sector_size);
016ea90
-	bs->bpb.sectors_per_cluster = (u8)(g_vol->cluster_size /
016ea90
-			opts.sector_size);
016ea90
+	sectors_per_cluster = g_vol->cluster_size / opts.sector_size;
016ea90
+	if (sectors_per_cluster > 128)
016ea90
+		bs->bpb.sectors_per_cluster = 257 - ffs(sectors_per_cluster);
016ea90
+	else
016ea90
+		bs->bpb.sectors_per_cluster = sectors_per_cluster;
016ea90
 	bs->bpb.media_type = 0xf8; /* hard disk */
016ea90
 	bs->bpb.sectors_per_track = cpu_to_le16(opts.sectors_per_track);
016ea90
 	ntfs_log_debug("sectors per track = %ld (0x%lx)\n",
016ea90
--- ntfsprogs/ntfsclone.c.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ ntfsprogs/ntfsclone.c	2018-05-07 09:11:38.245007100 +0200
016ea90
@@ -3,7 +3,7 @@ 
016ea90
  *
016ea90
  * Copyright (c) 2003-2006 Szabolcs Szakacsits
016ea90
  * Copyright (c) 2004-2006 Anton Altaparmakov
016ea90
- * Copyright (c) 2010-2016 Jean-Pierre Andre
016ea90
+ * Copyright (c) 2010-2018 Jean-Pierre Andre
016ea90
  * Special image format support copyright (c) 2004 Per Olofsson
016ea90
  *
016ea90
  * Clone NTFS data and/or metadata to a sparse file, image, device or stdout.
016ea90
@@ -71,6 +71,7 @@ 
016ea90
  */
016ea90
 #define NTFS_DO_NOT_CHECK_ENDIANS
016ea90
 
016ea90
+#include "param.h"
016ea90
 #include "debug.h"
016ea90
 #include "types.h"
016ea90
 #include "support.h"
016ea90
@@ -270,7 +271,6 @@ 
016ea90
 
016ea90
 #define LAST_METADATA_INODE	11
016ea90
 
016ea90
-#define NTFS_MAX_CLUSTER_SIZE	65536
016ea90
 #define NTFS_SECTOR_SIZE	  512
016ea90
 
016ea90
 #define rounded_up_division(a, b) (((a) + (b - 1)) / (b))
016ea90
@@ -393,7 +393,7 @@ 
016ea90
 		   "Efficiently clone, image, restore or rescue an NTFS Volume.\n\n"
016ea90
 		   "Copyright (c) 2003-2006 Szabolcs Szakacsits\n"
016ea90
 		   "Copyright (c) 2004-2006 Anton Altaparmakov\n"
016ea90
-		   "Copyright (c) 2010-2016 Jean-Pierre Andre\n\n");
016ea90
+		   "Copyright (c) 2010-2018 Jean-Pierre Andre\n\n");
016ea90
 	fprintf(stderr, "%s\n%s%s", ntfs_gpl, ntfs_bugs, ntfs_home);
016ea90
 	exit(0);
016ea90
 }
016ea90
@@ -756,7 +756,7 @@ 
016ea90
 
016ea90
 static void copy_cluster(int rescue, u64 rescue_lcn, u64 lcn)
016ea90
 {
016ea90
-	char buff[NTFS_MAX_CLUSTER_SIZE]; /* overflow checked at mount time */
016ea90
+	char *buff;
016ea90
 	/* vol is NULL if opt.restore_image is set */
016ea90
 	s32 csize = le32_to_cpu(image_hdr.cluster_size);
016ea90
 	BOOL backup_bootsector;
016ea90
@@ -783,6 +783,10 @@ 
016ea90
 		}
016ea90
 	}
016ea90
 
016ea90
+	buff = (char*)ntfs_malloc(csize);
016ea90
+	if (!buff)
016ea90
+		err_exit("Not enough memory");
016ea90
+
016ea90
 // need reading when not about to write ?
016ea90
 	if (read_all(fd, buff, csize) == -1) {
016ea90
 
016ea90
@@ -858,6 +862,7 @@ 
016ea90
 		perr_printf("Write failed");
016ea90
 #endif
016ea90
 	}
016ea90
+	free(buff);
016ea90
 }
016ea90
 
016ea90
 static s64 lseek_out(int fd, s64 pos, int mode)
016ea90
@@ -995,7 +1000,11 @@ 
016ea90
 				 struct progress_bar *progress, u64 *p_counter)
016ea90
 {
016ea90
 	s64 i;
016ea90
-	char buff[NTFS_MAX_CLUSTER_SIZE];
016ea90
+	char *buff;
016ea90
+
016ea90
+	buff = (char*)ntfs_malloc(csize);
016ea90
+	if (!buff)
016ea90
+		err_exit("Not enough memory");
016ea90
 
016ea90
 	memset(buff, 0, csize);
016ea90
 
016ea90
@@ -1004,6 +1013,7 @@ 
016ea90
 			perr_exit("write_all");
016ea90
 		progress_update(progress, ++(*p_counter));
016ea90
 	}
016ea90
+	free(buff);
016ea90
 }
016ea90
 
016ea90
 static void restore_image(void)
016ea90
@@ -1492,7 +1502,7 @@ 
016ea90
 
016ea90
 static void copy_wipe_mft(ntfs_walk_clusters_ctx *image, runlist *rl)
016ea90
 {
016ea90
-	char buff[NTFS_MAX_CLUSTER_SIZE]; /* overflow checked at mount time */
016ea90
+	char *buff;
016ea90
 	void *fd;
016ea90
 	s64 mft_no;
016ea90
 	u32 mft_record_size;
016ea90
@@ -1522,6 +1532,10 @@ 
016ea90
 		clusters_per_set = mft_record_size/csize;
016ea90
 		records_per_set = 1;
016ea90
 	}
016ea90
+	buff = (char*)ntfs_malloc(mft_record_size);
016ea90
+	if (!buff)
016ea90
+		err_exit("Not enough memory");
016ea90
+
016ea90
 	mft_no = 0;
016ea90
 	ri = rj = 0;
016ea90
 	wi = wj = 0;
016ea90
@@ -1554,6 +1568,7 @@ 
016ea90
 		}
016ea90
 	}
016ea90
 	image->current_lcn = current_lcn;
016ea90
+	free(buff);
016ea90
 }
016ea90
 
016ea90
 /*
016ea90
@@ -1566,7 +1581,7 @@ 
016ea90
 
016ea90
 static void copy_wipe_i30(ntfs_walk_clusters_ctx *image, runlist *rl)
016ea90
 {
016ea90
-	char buff[NTFS_MAX_CLUSTER_SIZE]; /* overflow checked at mount time */
016ea90
+	char *buff;
016ea90
 	void *fd;
016ea90
 	u32 indx_record_size;
016ea90
 	u32 csize;
016ea90
@@ -1595,6 +1610,10 @@ 
016ea90
 		clusters_per_set = indx_record_size/csize;
016ea90
 		records_per_set = 1;
016ea90
 	}
016ea90
+	buff = (char*)ntfs_malloc(indx_record_size);
016ea90
+	if (!buff)
016ea90
+		err_exit("Not enough memory");
016ea90
+
016ea90
 	ri = rj = 0;
016ea90
 	wi = wj = 0;
016ea90
 	if (rl[ri].length)
016ea90
@@ -1627,6 +1646,7 @@ 
016ea90
 		}
016ea90
 	}
016ea90
 	image->current_lcn = current_lcn;
016ea90
+	free(buff);
016ea90
 }
016ea90
 
016ea90
 static void dump_clusters(ntfs_walk_clusters_ctx *image, runlist *rl)
016ea90
--- ntfsprogs/ntfsresize.c.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ ntfsprogs/ntfsresize.c	2018-05-07 09:11:13.076883400 +0200
016ea90
@@ -59,6 +59,7 @@ 
016ea90
 #include <fcntl.h>
016ea90
 #endif
016ea90
 
016ea90
+#include "param.h"
016ea90
 #include "debug.h"
016ea90
 #include "types.h"
016ea90
 #include "support.h"
016ea90
@@ -243,8 +244,6 @@ 
016ea90
 #define DIRTY_INODE		(1)
016ea90
 #define DIRTY_ATTRIB		(2)
016ea90
 
016ea90
-#define NTFS_MAX_CLUSTER_SIZE	(65536)
016ea90
-
016ea90
 static s64 rounded_up_division(s64 numer, s64 denom)
016ea90
 {
016ea90
 	return (numer + (denom - 1)) / denom;
016ea90
@@ -404,7 +403,7 @@ 
016ea90
 	printf("Copyright (c) 2002-2005  Anton Altaparmakov\n");
016ea90
 	printf("Copyright (c) 2002-2003  Richard Russon\n");
016ea90
 	printf("Copyright (c) 2007       Yura Pakhuchiy\n");
016ea90
-	printf("Copyright (c) 2011-2016  Jean-Pierre Andre\n");
016ea90
+	printf("Copyright (c) 2011-2018  Jean-Pierre Andre\n");
016ea90
 	printf("\n%s\n%s%s", ntfs_gpl, ntfs_bugs, ntfs_home);
016ea90
 }
016ea90
 
016ea90
@@ -1849,9 +1848,13 @@ 
016ea90
 static void copy_clusters(ntfs_resize_t *resize, s64 dest, s64 src, s64 len)
016ea90
 {
016ea90
 	s64 i;
016ea90
-	char buff[NTFS_MAX_CLUSTER_SIZE]; /* overflow checked at mount time */
016ea90
+	char *buff;
016ea90
 	ntfs_volume *vol = resize->vol;
016ea90
 
016ea90
+	buff = (char*)ntfs_malloc(vol->cluster_size);
016ea90
+	if (!buff)
016ea90
+		perr_exit("ntfs_malloc");
016ea90
+
016ea90
 	for (i = 0; i < len; i++) {
016ea90
 
016ea90
 		lseek_to_cluster(vol, src + i);
016ea90
@@ -1875,6 +1878,7 @@ 
016ea90
 		resize->relocations++;
016ea90
 		progress_update(&resize->progress, resize->relocations);
016ea90
 	}
016ea90
+	free(buff);
016ea90
 }
016ea90
 
016ea90
 static void relocate_clusters(ntfs_resize_t *r, runlist *dest_rl, s64 src_lcn)
016ea90
--- include/ntfs-3g/param.h.ref	2017-03-23 10:42:44.000000000 +0100
016ea90
+++ include/ntfs-3g/param.h	2018-05-07 09:11:13.088302600 +0200
016ea90
@@ -40,6 +40,13 @@ 
016ea90
 };
016ea90
 
016ea90
 /*
016ea90
+ *		Parameters for formatting
016ea90
+ */
016ea90
+
016ea90
+		/* Up to Windows 10, the cluster size was limited to 64K */
016ea90
+#define NTFS_MAX_CLUSTER_SIZE 2097152 /* Windows 10 Creators allows 2MB */
016ea90
+
016ea90
+/*
016ea90
  *		Parameters for compression
016ea90
  */
016ea90