-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add open-iscsi system extension
This system extension enables open-iscsi Components: * `iscsid` running as an extension service * `tgtd` running as an extension service Signed-off-by: Andrew Rynhard <andrew@rynhard.io> Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com> Signed-off-by: Noel Georgi <git@frezbo.dev>
- Loading branch information
1 parent
3e1f8f2
commit 182c3d2
Showing
17 changed files
with
497 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: iscsid | ||
depends: | ||
- service: cri | ||
- service: ext-tgtd | ||
- network: | ||
- addresses | ||
- connectivity | ||
- hostname | ||
- etcfiles | ||
container: | ||
entrypoint: /usr/local/sbin/iscsid-wrapper | ||
mounts: | ||
# ld-musl-x86_64.so.1 | ||
- source: /lib | ||
destination: /lib | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
# libcrypto.so and libc.so | ||
- source: /usr/lib | ||
destination: /usr/lib | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
# iscsi libs | ||
- source: /usr/local/lib | ||
destination: /usr/local/lib | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
- source: /usr/local/sbin | ||
destination: /usr/local/sbin | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
# persistent storage for iscsi | ||
- source: /system/iscsi | ||
destination: /etc/iscsi | ||
type: bind | ||
options: | ||
- rshared | ||
- rbind | ||
- rw | ||
- source: /usr/local/etc/iscsi/iscsid.conf | ||
destination: /etc/iscsi/iscsid.conf | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
- source: /usr/local/etc/passwd | ||
destination: /etc/passwd | ||
type: bind | ||
options: | ||
- bind | ||
- ro | ||
- source: /run/lock/iscsi | ||
destination: /run/lock/iscsi | ||
type: bind | ||
options: | ||
- rshared | ||
- rbind | ||
- rw | ||
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package main | ||
|
||
import ( | ||
"bytes" | ||
"errors" | ||
"fmt" | ||
"io/ioutil" | ||
"log" | ||
"os" | ||
"os/exec" | ||
"syscall" | ||
) | ||
|
||
func main() { | ||
log.Println("iscsid-wrapper: starting...") | ||
cmd := exec.Command("/usr/local/sbin/iscsi-iname") | ||
|
||
var cmdOut bytes.Buffer | ||
|
||
cmd.Stdout = &cmdOut | ||
|
||
if _, err := os.Stat("/etc/iscsi/initiatorname.iscsi"); err != nil { | ||
if errors.Is(err, os.ErrNotExist) { | ||
log.Println("iscsid-wrapper: /etc/iscsi/initiatorname.iscsi does not exist, creating") | ||
if err := cmd.Run(); err != nil { | ||
log.Printf("iscsi-iname: error generating iscsi initiatorname %v\n", err) | ||
} | ||
|
||
initiatorName := fmt.Sprintf("InitiatorName=%s", cmdOut.String()) | ||
log.Printf("iscsid-wrapper: writing %s to /etc/iscsi/initiatorname.iscsi", initiatorName) | ||
|
||
if err := ioutil.WriteFile("/etc/iscsi/initiatorname.iscsi", []byte(initiatorName), 0o644); err != nil { | ||
log.Printf("iscsi-iname: error saving iscsi initiatorname %v\n", err) | ||
} | ||
} | ||
} | ||
|
||
log.Println("iscsid-wrapper: completed..., execing into iscsid") | ||
if err := syscall.Exec("/usr/local/sbin/iscsid", []string{"iscsid", "-f"}, os.Environ()); err != nil { | ||
log.Fatalf("iscsid: error execing /usr/local/sbin/iscsid %v\n", err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: v1alpha1 | ||
metadata: | ||
name: iscsi-tools | ||
version: "$VERSION" | ||
author: Sidero Labs | ||
description: | | ||
This system extension provides iscsi-tools. | ||
compatibility: | ||
talos: | ||
version: ">= v1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
root:x:0:0:root:/:/sbin/false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# https://git.alpinelinux.org/aports/plain/main/open-iscsi/add-missing-headers.patch?h=3.15-stable | ||
diff --git a/iscsiuio/src/unix/libs/bnx2x.c b/iscsiuio/src/unix/libs/bnx2x.c | ||
index c5e7b71..94d2663 100644 | ||
--- a/iscsiuio/src/unix/libs/bnx2x.c | ||
+++ b/iscsiuio/src/unix/libs/bnx2x.c | ||
@@ -1,3 +1,4 @@ | ||
+#include <netinet/if_ether.h> | ||
/* | ||
* Copyright (c) 2009-2011, Broadcom Corporation | ||
* Copyright (c) 2014, QLogic Corporation | ||
diff --git a/usr/idbm.c b/usr/idbm.c | ||
index a0207e2..f347332 100644 | ||
--- a/usr/idbm.c | ||
+++ b/usr/idbm.c | ||
@@ -1,3 +1,4 @@ | ||
+#include <fcntl.h> | ||
/* | ||
* iSCSI Discovery Database Library | ||
* | ||
diff --git a/usr/iscsi_net_util.c b/usr/iscsi_net_util.c | ||
index 6339082..2a75e62 100644 | ||
--- a/usr/iscsi_net_util.c | ||
+++ b/usr/iscsi_net_util.c | ||
@@ -31,7 +31,7 @@ | ||
#include <linux/sockios.h> | ||
#include <linux/if_vlan.h> | ||
#include <net/if_arp.h> | ||
-#include <linux/if_ether.h> | ||
+#include <netinet/if_ether.h> | ||
|
||
#include "sysdeps.h" | ||
#include "ethtool-copy.h" | ||
--- a/iscsiuio/src/unix/libs/bnx2x.c | ||
+++ b/iscsiuio/src/unix/libs/bnx2x.c | ||
@@ -47,6 +47,7 @@ | ||
#include <sys/mman.h> | ||
#include <sys/ioctl.h> | ||
#include <sys/types.h> | ||
+#include <sys/sysmacros.h> | ||
#include <sys/stat.h> | ||
#include <sys/user.h> | ||
#include <fcntl.h> | ||
--- a/iscsiuio/src/unix/libs/bnx2.c | ||
+++ b/iscsiuio/src/unix/libs/bnx2.c | ||
@@ -42,6 +42,7 @@ | ||
#include <arpa/inet.h> | ||
#include <sys/mman.h> | ||
#include <sys/types.h> | ||
+#include <sys/sysmacros.h> | ||
#include <sys/stat.h> | ||
#include <sys/user.h> | ||
#include <fcntl.h> | ||
--- a/iscsiuio/src/unix/libs/qedi.c.orig | ||
+++ b/iscsiuio/src/unix/libs/qedi.c | ||
@@ -46,6 +46,7 @@ | ||
#include <errno.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
+#include <netinet/if_ether.h> | ||
#include <arpa/inet.h> | ||
#include <linux/types.h> | ||
#include <linux/sockios.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# https://git.alpinelinux.org/aports/plain/main/open-iscsi/dont-use-lib64.patch?h=3.15-stable | ||
diff --git a/libopeniscsiusr/Makefile b/libopeniscsiusr/Makefile | ||
index bf7c96c..eb9da59 100644 | ||
--- a/libopeniscsiusr/Makefile | ||
+++ b/libopeniscsiusr/Makefile | ||
@@ -13,8 +13,8 @@ prefix ?= /usr | ||
INSTALL ?= install | ||
|
||
ifndef LIB_DIR | ||
- ifeq ($(shell test -d /lib64 && echo 1),1) | ||
- LIB_DIR=$(prefix)/lib64 | ||
+ ifeq ($(shell test -d /lib && echo 1),1) | ||
+ LIB_DIR=$(prefix)/lib | ||
else | ||
LIB_DIR=$(prefix)/lib | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# https://git.alpinelinux.org/aports/plain/main/open-iscsi/musl-fixes.patch?h=3.15-stable | ||
--- a/usr/iscsiadm.c 2016-09-29 20:33:24.000000000 +0200 | ||
+++ b/usr/iscsiadm.c 2017-01-08 03:03:20.648496369 +0100 | ||
@@ -3263,7 +3263,8 @@ | ||
int packet_size=32, ping_count=1, ping_interval=0; | ||
int do_discover = 0, sub_mode = -1; | ||
int portal_type = -1; | ||
int timeout = ISCSID_REQ_TIMEOUT; | ||
+ int argerror = 0; | ||
struct sigaction sa_old; | ||
struct sigaction sa_new; | ||
struct list_head ifaces; | ||
@@ -3426,6 +3427,11 @@ | ||
break; | ||
case 'h': | ||
usage(0); | ||
+ break; | ||
+ case '?': | ||
+ log_error("unrecognized character '%c'", optopt); | ||
+ argerror = 1; | ||
+ break; | ||
} | ||
|
||
if (name && value) { | ||
@@ -3441,8 +3446,7 @@ | ||
} | ||
} | ||
|
||
- if (optopt) { | ||
- log_error("unrecognized character '%c'", optopt); | ||
+ if (argerror) { | ||
rc = ISCSI_ERR_INVAL; | ||
goto free_ifaces; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# https://git.alpinelinux.org/aports/plain/main/open-iscsi/remove-werror.patch?h=3.15-stable | ||
diff --git a/libopeniscsiusr/Makefile b/libopeniscsiusr/Makefile | ||
index 6757527..7715344 100644 | ||
--- a/libopeniscsiusr/Makefile | ||
+++ b/libopeniscsiusr/Makefile | ||
@@ -44,7 +44,7 @@ EXTRA_MAN_FILES = libopeniscsiusr.h.3 | ||
OBJS = context.o misc.o session.o sysfs.o iface.o idbm.o node.o default.o | ||
|
||
CFLAGS ?= -O2 -g | ||
-CFLAGS += -Wall -Werror -Wextra -fvisibility=hidden -fPIC | ||
+CFLAGS += -Wall -Wextra -fvisibility=hidden -fPIC | ||
CFLAGS += $(shell $(PKG_CONFIG) --cflags libkmod) | ||
|
||
LDFLAGS += $(shell $(PKG_CONFIG) --libs libkmod) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: open-iscsi | ||
variant: scratch | ||
shell: /toolchain/bin/bash | ||
dependencies: | ||
- stage: base | ||
- image: "{{ .PKGS_PREFIX }}/kmod:{{ .PKGS_VERSION }}" | ||
- image: "{{ .PKGS_PREFIX }}/openssl:{{ .PKGS_VERSION }}" | ||
- image: "{{ .PKGS_PREFIX }}/util-linux:{{ .PKGS_VERSION }}" | ||
- stage: open-isns | ||
from: /rootfs | ||
steps: | ||
- sources: | ||
- url: https://github.com/open-iscsi/open-iscsi/archive/refs/tags/2.1.6.tar.gz | ||
destination: open-iscsi.tar.gz | ||
sha256: b67350d106696779c6bee421c60a64ade2a9dabe247dc4bd44f59c751e22d7f7 | ||
sha512: 4a32a76c1c32d7d1a01fe3a0f88ce9616a54323ec043757be73051eb41ebae8de90ce057acce72fb6fe07aa47e814c9bc6ee88b13fa7d7769ca10c5175974f1d | ||
prepare: | ||
- | | ||
tar -xzf open-iscsi.tar.gz --strip-components=1 | ||
# Create symlinks for binaries required by libtoolize. | ||
ln -s /toolchain/bin/sed /bin/sed | ||
ln -s /toolchain/bin/sed /usr/bin/sed | ||
ln -s /toolchain/bin/grep /bin/grep | ||
# Create symlinks for files used when building. | ||
mkdir -p /usr/bin | ||
ln -s /toolchain/bin/pkg-config /usr/bin/pkg-config | ||
ln -s /toolchain/bin/file /usr/bin/file | ||
patch -p1 < /pkg/patches/musl-fixes.patch | ||
patch -p1 < /pkg/patches/add-missing-headers.patch | ||
patch -p1 < /pkg/patches/dont-use-lib64.patch | ||
patch -p1 < /pkg/patches/remove-werror.patch | ||
build: | ||
- | | ||
export PKG_CONFIG_PATH=/usr/lib/pkgconfig | ||
LDFLAGS="$LDFLAGS -L/usr/local/lib" \ | ||
make -j $(nproc) \ | ||
prefix=/usr/local \ | ||
exec_prefix=/usr/local \ | ||
localstatedir=/var \ | ||
sysconfdir=/usr/local/etc \ | ||
mandir=/usr/local/share/man \ | ||
OPTFLAGS="$CFLAGS -I/usr/local/include -DNO_SYSTEMD" | ||
install: | ||
- | | ||
mkdir -p /usr/local/etc | ||
make prefix=/usr/local exec_prefix=/usr/local/ etcdir=/usr/local/etc DESTDIR=/rootfs install | ||
# cleanup | ||
rm -rf /rootfs/usr/local/share | ||
rm -rf /rootfs/usr/local/include | ||
rm -rf /rootfs/usr/local/lib/pkgconfig | ||
rm -rf /rootfs/usr/local/etc/iscsi/ifaces | ||
cp /pkg/files/passwd /rootfs/usr/local/etc/passwd | ||
finalize: | ||
- from: /rootfs | ||
to: /rootfs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: open-isns | ||
variant: scratch | ||
shell: /toolchain/bin/bash | ||
dependencies: | ||
- stage: base | ||
- image: "{{ .PKGS_PREFIX }}/openssl:{{ .PKGS_VERSION }}" | ||
steps: | ||
- sources: | ||
- url: https://github.com/open-iscsi/open-isns/archive/refs/tags/v0.101.tar.gz | ||
destination: open-isns.tar.gz | ||
sha256: f672ec86b6c9e984843a7a28d76f07e26393499c486f86034b8b18caa8deb556 | ||
sha512: e5a392127b0d85f36e9e4aa963c0c502af8c5aea0aba6d12abb4425649969dcc20ba6e87a99083626d981438439b17b71a86320f816042d82ed5dbe7e7a63e77 | ||
prepare: | ||
- | | ||
tar -xzf open-isns.tar.gz --strip-components=1 | ||
- | | ||
cp /toolchain/share/automake-1.16/config.guess aclocal/ | ||
autoreconf -fi | ||
- | | ||
mkdir build | ||
cd build | ||
../configure \ | ||
--prefix=/usr/local \ | ||
--sysconfdir=/usr/local/etc \ | ||
--mandir=/usr/local/share/man \ | ||
--infodir=/usr/local/share/info \ | ||
--enable-shared \ | ||
CFLAGS="$CFLAGS -Wno-error" | ||
build: | ||
- | | ||
cd build | ||
make -j $(nproc) | ||
install: | ||
- | | ||
cd build | ||
# open-isns libraries only needed | ||
# make prefix=/usr/local etcdir=/usr/local/etc DESTDIR=/rootfs install | ||
make prefix=/usr/local DESTDIR=/rootfs install_hdrs | ||
make prefix=/usr/local DESTDIR=/rootfs install_lib | ||
# cleanup | ||
rm -rf /rootfs/usr/local/lib/systemd | ||
rm -rf /rootfs/usr/local/lib/*.a | ||
rm -rf /rootfs/usr/local/lib/pkgconfig | ||
finalize: | ||
- from: /rootfs | ||
to: /rootfs |
Oops, something went wrong.