Opened 2 years ago

Closed 2 years ago

#17750 closed bug (fixed)

package_repo command no longer functions through symlinks

Reported by: kallisti5 Owned by: nobody
Priority: blocker Milestone: R1/beta4
Component: Kits/Package Kit Version: R1/beta3
Keywords: package_repo Cc:
Blocked By: Blocking:
Platform: All

Description

To reproduce:

[kallisti5@eris repo_test]$ ls -la 
total 64
drwxr-xr-x 1 kallisti5 users    34 May 20 08:02 .
drwx------ 1 kallisti5 users 12960 May 20 08:01 ..
lrwxrwxrwx 1 kallisti5 users    21 May 20 08:02 packages -> ../riscv-unbootstrap/
-rw-r--r-- 1 kallisti5 users   204 May 20 08:01 repo.info

[kallisti5@eris repo_test]$ ls -la packages/bash-4.4.023-1-riscv64.hpkg 
-rw-r--r-- 1 kallisti5 users 4059654 Jan 19  2021 packages/bash-4.4.023-1-riscv64.hpkg

[kallisti5@eris repo_test]$ sha256sum packages/bash-4.4.023-1-riscv64.hpkg
3c338e1784fd15245fd3eff231548729bdaf8fd1508b74cb0017df444887c8bd 
 packages/bash-4.4.023-1-riscv64.hpkg

[kallisti5@eris repo_test]$ package_repo create repo.info packages/bash-4.4.023-1-riscv64.hpkg 
package 'packages/bash-4.4.023-1-riscv64.hpkg' does not exist

Slightly adjusting the test to bypass the symlink:

[kallisti5@eris repo_test]$ package_repo create repo.info ../riscv-unbootstrap/bash-4.4.023-1-riscv64.hpkg 
bash (4.4.023-1)
	checksum: 3c338e1784fd15245fd3eff231548729bdaf8fd1508b74cb0017df444887c8bd
----- Package Repository Info -----
package count                     1
-----------------------------------
header size:                     72
repository header size:         556
package attributes size:       3798
total size:                     993
-----------------------------------

Attachments (2)

repo.info (204 bytes ) - added by kallisti5 2 years ago.
repo.info
strace.txt (7.0 KB ) - added by kallisti5 2 years ago.

Download all attachments as: .zip

Change History (9)

comment:1 by kallisti5, 2 years ago

This was seen on our infrastructure, then I was able to reproduce on my desktop. I'm assuming we haven't run into it before since we were using an ancient version of package_repo.

by kallisti5, 2 years ago

Attachment: repo.info added

repo.info

comment:2 by kallisti5, 2 years ago

Not a lot has changed in the package_repo command:

Likely something changed within the package kit itself:

Last edited 2 years ago by kallisti5 (previous) (diff)

by kallisti5, 2 years ago

Attachment: strace.txt added

comment:3 by kallisti5, 2 years ago

Milestone: UnscheduledR1/beta4

comment:4 by kallisti5, 2 years ago

ok. With Jessica's help, we did a little debugging. https://review.haiku-os.org/c/haiku/+/5323 was the original fix, but it is ineffective. BEntry navigates symlinks just fine without transversal = true.

#include <Entry.h>
#include <stdio.h>

int main() {
  BEntry entry("package/foo");
  if (entry.Exists())
    printf("foo exists!");
  else
    printf("foo no exists!");
  return 0;
}

In addition to this, package_repo functions as expected and navigates symlinks properly under Haiku. The symlink navigation issue only occurs when using package_repo under Linux.

This points to something broken in libbe_build or libroot_build

comment:7 by kallisti5, 2 years ago

Resolution: fixed
Status: newclosed

resolved :-)

Note: See TracTickets for help on using tickets.