drbd: Fix regression in recv_bm_rle_bits (compressed bitmap)
We used to be16_to_cpu the length field in our received packet header. drbd commit 17c854fea474a5eb3cfa12e4fb019e46debbc4ec drbd: receiving of big packets, for payloads between 64kByte and 4GByte changed this, but forgot to adjust a few places where we relied on h->length being in native byte order. This broke the receiving side of the RLE compressed bitmap exchange. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
Родитель
f10f262349
Коммит
004352fa60
|
@ -970,9 +970,10 @@ static int drbd_recv_header(struct drbd_conf *mdev, enum drbd_packets *cmd, unsi
|
||||||
*cmd = be16_to_cpu(h->h95.command);
|
*cmd = be16_to_cpu(h->h95.command);
|
||||||
*packet_size = be32_to_cpu(h->h95.length);
|
*packet_size = be32_to_cpu(h->h95.length);
|
||||||
} else {
|
} else {
|
||||||
dev_err(DEV, "magic?? on data m: 0x%lx c: %d l: %d\n",
|
dev_err(DEV, "magic?? on data m: 0x%08x c: %d l: %d\n",
|
||||||
(long)be32_to_cpu(h->h80.magic),
|
be32_to_cpu(h->h80.magic),
|
||||||
h->h80.command, h->h80.length);
|
be16_to_cpu(h->h80.command),
|
||||||
|
be16_to_cpu(h->h80.length));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
mdev->last_received = jiffies;
|
mdev->last_received = jiffies;
|
||||||
|
@ -3421,7 +3422,7 @@ recv_bm_rle_bits(struct drbd_conf *mdev,
|
||||||
u64 tmp;
|
u64 tmp;
|
||||||
unsigned long s = c->bit_offset;
|
unsigned long s = c->bit_offset;
|
||||||
unsigned long e;
|
unsigned long e;
|
||||||
int len = p->head.length - (sizeof(*p) - sizeof(p->head));
|
int len = be16_to_cpu(p->head.length) - (sizeof(*p) - sizeof(p->head));
|
||||||
int toggle = DCBP_get_start(p);
|
int toggle = DCBP_get_start(p);
|
||||||
int have;
|
int have;
|
||||||
int bits;
|
int bits;
|
||||||
|
@ -3570,8 +3571,8 @@ static int receive_bitmap(struct drbd_conf *mdev, enum drbd_packets cmd, unsigne
|
||||||
memcpy(p, h, sizeof(*h));
|
memcpy(p, h, sizeof(*h));
|
||||||
if (drbd_recv(mdev, p->head.payload, data_size) != data_size)
|
if (drbd_recv(mdev, p->head.payload, data_size) != data_size)
|
||||||
goto out;
|
goto out;
|
||||||
if (p->head.length <= (sizeof(*p) - sizeof(p->head))) {
|
if (data_size <= (sizeof(*p) - sizeof(p->head))) {
|
||||||
dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", p->head.length);
|
dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", data_size);
|
||||||
return FAILED;
|
return FAILED;
|
||||||
}
|
}
|
||||||
ret = decode_bitmap_c(mdev, p, &c);
|
ret = decode_bitmap_c(mdev, p, &c);
|
||||||
|
@ -4582,17 +4583,19 @@ int drbd_asender(struct drbd_thread *thi)
|
||||||
|
|
||||||
if (received == expect && cmd == NULL) {
|
if (received == expect && cmd == NULL) {
|
||||||
if (unlikely(h->magic != BE_DRBD_MAGIC)) {
|
if (unlikely(h->magic != BE_DRBD_MAGIC)) {
|
||||||
dev_err(DEV, "magic?? on meta m: 0x%lx c: %d l: %d\n",
|
dev_err(DEV, "magic?? on meta m: 0x%08x c: %d l: %d\n",
|
||||||
(long)be32_to_cpu(h->magic),
|
be32_to_cpu(h->magic),
|
||||||
h->command, h->length);
|
be16_to_cpu(h->command),
|
||||||
|
be16_to_cpu(h->length));
|
||||||
goto reconnect;
|
goto reconnect;
|
||||||
}
|
}
|
||||||
cmd = get_asender_cmd(be16_to_cpu(h->command));
|
cmd = get_asender_cmd(be16_to_cpu(h->command));
|
||||||
len = be16_to_cpu(h->length);
|
len = be16_to_cpu(h->length);
|
||||||
if (unlikely(cmd == NULL)) {
|
if (unlikely(cmd == NULL)) {
|
||||||
dev_err(DEV, "unknown command?? on meta m: 0x%lx c: %d l: %d\n",
|
dev_err(DEV, "unknown command?? on meta m: 0x%08x c: %d l: %d\n",
|
||||||
(long)be32_to_cpu(h->magic),
|
be32_to_cpu(h->magic),
|
||||||
h->command, h->length);
|
be16_to_cpu(h->command),
|
||||||
|
be16_to_cpu(h->length));
|
||||||
goto disconnect;
|
goto disconnect;
|
||||||
}
|
}
|
||||||
expect = cmd->pkt_size;
|
expect = cmd->pkt_size;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче