Project

General

Profile

Actions

Bug #1158

closed

Server crashes when used in production.

Added by Hammel 7 months ago. Updated 12 days ago.

Status:
Closed
Priority:
Immediate
Assignee:
Target version:
Start date:
27 Aug 2024
Due date:
% Done:

100%

Estimated time:
Severity:
01 - Critical

Description

This is the log if run manually and then visiting the home page for the pistore device.

pistoreImages[get.c:354] INFO Entered.
dbGetStores[db.c:385] INFO fsList size: 5
getLabelFromDevice[db.c:151] ERROR /dev/sdb1: failed to read partitions.
_sumFS[db.c:232] INFO Adding str to GSList: /media/usb/sdb1:1442092184:495276819:4096:N:N:None
getLabelFromDevice[db.c:151] ERROR /dev/sde1: failed to read partitions.
_sumFS[db.c:232] INFO Adding str to GSList: /media/usb/sde1:1453294359:491971867:4096:N:N:None
getLabelFromDevice[db.c:151] ERROR /dev/sda1: failed to read partitions.
_sumFS[db.c:232] INFO Adding str to GSList: /media/usb/sda1:961129721:452192347:4096:N:N:None
getLabelFromDevice[db.c:151] ERROR /dev/sdd1: failed to read partitions.
_sumFS[db.c:232] INFO Adding str to GSList: /media/usb/sdd1:120129104:99361159:4096:N:N:None
getLabelFromDevice[db.c:151] ERROR /dev/sdc1: failed to read partitions.
_sumFS[db.c:232] INFO Adding str to GSList: /media/usb/sdc1:961129721:433014315:4096:N:N:None
dbGetStores[db.c:387] INFO return list size: 5
_showFS[pistoreweb.c:174] INFO /media/usb/sdb1: 5501GB Total, 1889GB Available
_showFS[pistoreweb.c:174] INFO /media/usb/sde1: 5543GB Total, 1876GB Available
_showFS[pistoreweb.c:174] INFO /media/usb/sda1: 3666GB Total, 1724GB Available
_showFS[pistoreweb.c:174] INFO /media/usb/sdd1: 458GB Total, 379GB Available
_showFS[pistoreweb.c:174] INFO /media/usb/sdc1: 3666GB Total, 1651GB Available
pistoreweb: malloc.c:2617: sysmalloc: Assertion `(old_top == initial_top (av) && old_size == 0) || ((unsigned long) (old_size
) >= MINSIZE && prev_inuse (old_top) && ((unsigned long) old_end & (pagesize - 1)) == 0)' failed.
Aborted

Related issues

Related to Pistore - Feature #1060: PiStore needs store manager web UIClosedHammel30 Oct 2023

Actions
Actions #1

Updated by Hammel 2 months ago

  • Status changed from New to In Progress
  • % Done changed from 0 to 10

There are 5 devices on the production pistore. The developer pistore just has three but doesn't crash. Add two or three more devices and see if the problem can be reproduced on the developer system. If not, push the latest pistoreweb to production and try it there.

Actions #2

Updated by Hammel 2 months ago

Added two USB sticks. The server did not pick up their insertion (bug #1). When the server was restarted, it crashed. The error was also a problem with malloc though it presented without the assert.

pistoreFrontEnd[get.c:293] INFO Allocating ptr.
pistoreFrontEnd[get.c:309] INFO Allocating page.
malloc(): invalid next size (unsorted)
Aborted

Note that 4 USB devices works fine. It's when I add the 5th that it crashes.

Actions #3

Updated by Hammel 15 days ago

pistoreweb has been migrated to client side graphing. pistore node has 4 devices. Add 1 (or 2) storage devices and see if the crash still happens.

Once this bug is fixed (if it still exists) I need to add as many drives as I can (probably a bunch of USB sticks) to see how that holds up.

Actions #4

Updated by Hammel 12 days ago

  • Related to Feature #1060: PiStore needs store manager web UI added
Actions #5

Updated by Hammel 12 days ago

  • Status changed from In Progress to Closed
  • % Done changed from 10 to 100

There were 4 drives with a single partition during testing of the client-side graphing update.

I added two drives, one with two partitions and one with 3. This made 9 graphs for both the touchscreen UI and for the client side UI. Both are running fine at the moment.

There is one issue: The "name" for each drive is it's fully qualified path. That should be stripped to it's basename(). There is no basename in javascript but this will work.

function basename(path) {
   return path.split('/').reverse()[0];
}

I tested this and it works. I've created a new issue for it (RM #1187) to make sure I get it into the codebase.

This issue can be closed.

Actions

Also available in: Atom PDF