🤞 Sync 2025-12-11 10:03:47
This commit is contained in:
46
unishare/Makefile
Normal file
46
unishare/Makefile
Normal file
@@ -0,0 +1,46 @@
|
||||
#
|
||||
# Copyright (C) 2022 jjm2473 <jjm2473@gmail.com>
|
||||
#
|
||||
# This is free software, licensed under the MIT License.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
|
||||
PKG_NAME:=unishare
|
||||
PKG_VERSION:=1.1.2
|
||||
PKG_RELEASE:=1
|
||||
PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
SUBMENU:=File Transfer
|
||||
TITLE:=Unified Network Shares Manager
|
||||
DEPENDS:=+samba4-server +webdav2
|
||||
PKGARCH:=all
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
Configure samba, webdav (maybe more?) in one app
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/conffiles
|
||||
/etc/config/unishare
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d $(1)/etc/config
|
||||
$(INSTALL_BIN) ./files/unishare.init $(1)/etc/init.d/unishare
|
||||
$(INSTALL_CONF) ./files/unishare.config $(1)/etc/config/unishare
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
4
unishare/files/unishare.config
Normal file
4
unishare/files/unishare.config
Normal file
@@ -0,0 +1,4 @@
|
||||
config global
|
||||
option enabled '0'
|
||||
option anonymous '1'
|
||||
option webdav_port '8888'
|
||||
321
unishare/files/unishare.init
Executable file
321
unishare/files/unishare.init
Executable file
@@ -0,0 +1,321 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=97
|
||||
STOP=05
|
||||
USE_PROCD=1
|
||||
|
||||
NEWLINE=$'\n'
|
||||
|
||||
# $section $proto callback $args
|
||||
validate_share() {
|
||||
local path
|
||||
local name
|
||||
local rw
|
||||
local ro
|
||||
local proto
|
||||
config_get proto $1 proto
|
||||
echo "$proto" | grep -qFw "$2" || return 0
|
||||
config_get path $1 path
|
||||
[ -z "$path" ] && return 1
|
||||
config_get name $1 name
|
||||
[ -z "$name" ] && name=${path##*/}
|
||||
config_get rw $1 rw
|
||||
config_get ro $1 ro
|
||||
|
||||
shift
|
||||
shift
|
||||
$@ "$path" "$name" "$rw" "$ro"
|
||||
}
|
||||
|
||||
clean_unishare() {
|
||||
local unishare
|
||||
config_get unishare $1 unishare "0"
|
||||
if [[ $unishare == 1 ]]; then
|
||||
uci delete "$2.$1"
|
||||
fi
|
||||
}
|
||||
|
||||
reset_unishare_smb_users() {
|
||||
local users=`grep -s '^unishare:' /etc/group | cut -d: -f4 | sed 's/,/ /g'`
|
||||
local username
|
||||
[ -z "$users" ] && return 0
|
||||
for username in $users; do
|
||||
smbpasswd -L -x "$username" >/dev/null 2>&1
|
||||
done
|
||||
lock /var/lock/group
|
||||
sed -i -E 's/^unishare:x:(\d+):.+/unishare:x:\1:/' /etc/group
|
||||
lock -u /var/lock/group
|
||||
}
|
||||
|
||||
clean_unused_smb_users() {
|
||||
local users username
|
||||
grep -s "^unishare:.*[^:]$" /etc/group | cut -d: -f4 | sed 's/,/\n/g' | sed 's/^\(.*\)$/^\1$/g' > /var/run/unishare.users
|
||||
if [ -s /var/run/unishare.users ]; then
|
||||
users=`grep -s ':unishare:' /etc/passwd | cut -d: -f1 | grep -v -f /var/run/unishare.users`
|
||||
else
|
||||
users=`grep -s ':unishare:' /etc/passwd | cut -d: -f1`
|
||||
fi
|
||||
rm -f /var/run/unishare.users
|
||||
if [ -n "$users" ]; then
|
||||
lock /var/lock/passwd
|
||||
for username in $users; do
|
||||
sed -i "/^$username:/d" /etc/shadow /etc/passwd
|
||||
done
|
||||
lock -u /var/lock/passwd
|
||||
fi
|
||||
}
|
||||
|
||||
clean_samba() {
|
||||
reset_unishare_smb_users
|
||||
config_load samba4
|
||||
config_foreach clean_unishare sambashare samba4
|
||||
}
|
||||
|
||||
add_samba_user() {
|
||||
local username
|
||||
local password
|
||||
local gid=$2
|
||||
config_get username $1 username
|
||||
[ -z "$username" ] && return 1
|
||||
user_exists "$username" || user_add "$username" "" $gid "unishare"
|
||||
group_add_user "unishare" "$username"
|
||||
config_get password $1 password
|
||||
if [ -z "$password" ]; then
|
||||
smbpasswd -L -c /var/etc/smb.conf -a -n "$username" >/dev/null 2>&1
|
||||
else
|
||||
{ echo "$password" ; echo "$password" ; } | smbpasswd -L -c /var/etc/smb.conf -a -s "$username" >/dev/null 2>&1
|
||||
fi
|
||||
}
|
||||
|
||||
# $smbcfg $path $name $rw $ro
|
||||
add_samba_share() {
|
||||
local rw=$4
|
||||
local ro=$5
|
||||
rw=`echo "$rw" | sed -e 's/everyone/guest nobody @unishare/g' -e 's/users/@unishare/g'`
|
||||
ro=`echo "$ro" | sed -e 's/everyone/guest nobody @unishare/g' -e 's/users/@unishare/g'`
|
||||
{
|
||||
cat <<-EOF
|
||||
add $1 sambashare
|
||||
set $1.@sambashare[-1].unishare=1
|
||||
set $1.@sambashare[-1].path='$2'
|
||||
set $1.@sambashare[-1].name='$3'
|
||||
set $1.@sambashare[-1].read_only=yes
|
||||
set $1.@sambashare[-1].force_root=1
|
||||
set $1.@sambashare[-1].inherit_owner=yes
|
||||
set $1.@sambashare[-1].create_mask=0666
|
||||
set $1.@sambashare[-1].dir_mask=0777
|
||||
set $1.@sambashare[-1].users='$rw $ro'
|
||||
EOF
|
||||
[[ $UNISHARE_G_ANONYMOUS == 1 ]] && echo " set $1.@sambashare[-1].guest_ok=yes"
|
||||
[ -n "$rw" ] && echo " set $1.@sambashare[-1].write_list='$rw'"
|
||||
[ -n "$ro" ] && echo " set $1.@sambashare[-1].read_list='$ro'"
|
||||
} | uci batch >/dev/null
|
||||
}
|
||||
|
||||
config_samba() {
|
||||
local gid=`group_add_next unishare`
|
||||
[ -z "$gid" ] && return 1
|
||||
[ -f "/var/etc/smb.conf" ] || cat <<-EOF >/var/etc/smb.conf
|
||||
[global]
|
||||
security = user
|
||||
null passwords = yes
|
||||
passdb backend = smbpasswd
|
||||
EOF
|
||||
config_foreach add_samba_user user $gid
|
||||
config_foreach validate_share share samba add_samba_share samba4
|
||||
}
|
||||
|
||||
reconfig_samba() {
|
||||
config_samba || { uci revert samba4; return 1; }
|
||||
uci commit samba4
|
||||
}
|
||||
|
||||
# $path $name $rw $ro
|
||||
add_webdav_share() {
|
||||
local rw="$3"
|
||||
local ro="$4"
|
||||
local u
|
||||
local var
|
||||
local v
|
||||
for u in $rw; do
|
||||
var="UNISHARE_DAV_${u}_rw"
|
||||
eval "v=\"\$$var\""
|
||||
export -n "$var=${v}$name$NEWLINE"
|
||||
done
|
||||
for u in $ro; do
|
||||
var="UNISHARE_DAV_${u}_ro"
|
||||
eval "v=\"\$$var\""
|
||||
export -n "$var=${v}$name$NEWLINE"
|
||||
done
|
||||
ln -s "$path" "/var/run/unishare/root/$name"
|
||||
}
|
||||
|
||||
clean_webdav_user() {
|
||||
local username
|
||||
config_get username $1 username
|
||||
[ -z "$username" ] && return 0
|
||||
export -n "UNISHARE_DAV_${username}_rw="
|
||||
export -n "UNISHARE_DAV_${username}_ro="
|
||||
}
|
||||
|
||||
add_webdav_user() {
|
||||
local username
|
||||
local password
|
||||
config_get username $1 username
|
||||
[ -z "$username" ] && return 1
|
||||
config_get password $1 password
|
||||
echo " - username: $username"
|
||||
echo " password: $password"
|
||||
echo " rules:"
|
||||
local v
|
||||
local r
|
||||
local oifs=$IFS
|
||||
IFS="$NEWLINE"
|
||||
eval "v=\"\$UNISHARE_DAV_${username}_rw\""
|
||||
for r in $v; do
|
||||
echo " - path: /$r"
|
||||
echo " modify: true"
|
||||
done
|
||||
for r in $UNISHARE_DAV_users_rw; do
|
||||
echo " - path: /$r"
|
||||
echo " modify: true"
|
||||
done
|
||||
eval "v=\"\$UNISHARE_DAV_${username}_ro\""
|
||||
for r in $v; do
|
||||
echo " - path: /$r"
|
||||
echo " allow: true"
|
||||
done
|
||||
for r in $UNISHARE_DAV_users_ro; do
|
||||
echo " - path: /$r"
|
||||
echo " allow: true"
|
||||
done
|
||||
IFS=$oifs
|
||||
}
|
||||
|
||||
config_webdav_header() {
|
||||
local r
|
||||
local anonymous=false
|
||||
[[ $UNISHARE_G_ANONYMOUS == 1 ]] && anonymous=true
|
||||
cat <<-EOF
|
||||
# Server related settings
|
||||
address: 0.0.0.0
|
||||
port: $UNISHARE_G_DAVPORT
|
||||
auth: true
|
||||
anonymous: $anonymous
|
||||
tls: false
|
||||
cert: cert.pem
|
||||
key: key.pem
|
||||
prefix: /
|
||||
no_sniff: true
|
||||
debug: false
|
||||
|
||||
# Default user settings (will be merged)
|
||||
scope: /var/run/unishare/root
|
||||
modify: false
|
||||
rules:
|
||||
EOF
|
||||
local oifs=$IFS
|
||||
IFS="$NEWLINE"
|
||||
for r in $UNISHARE_DAV_everyone_rw; do
|
||||
echo " - path: /$r"
|
||||
echo " modify: true"
|
||||
done
|
||||
for r in $UNISHARE_DAV_everyone_ro; do
|
||||
echo " - path: /$r"
|
||||
echo " allow: true"
|
||||
done
|
||||
IFS=$oifs
|
||||
cat <<-EOF
|
||||
- regex: true
|
||||
allow: false
|
||||
path: ^/.+
|
||||
- regex: false
|
||||
allow: true
|
||||
path: /
|
||||
|
||||
# CORS configuration
|
||||
cors:
|
||||
enabled: true
|
||||
credentials: true
|
||||
allowed_headers:
|
||||
- Depth
|
||||
allowed_hosts:
|
||||
- http://localhost:$UNISHARE_G_DAVPORT
|
||||
allowed_methods:
|
||||
- GET
|
||||
exposed_headers:
|
||||
- Content-Length
|
||||
- Content-Range
|
||||
|
||||
users:
|
||||
EOF
|
||||
}
|
||||
|
||||
config_webdav() {
|
||||
rm -rf /var/run/unishare 2>/dev/null
|
||||
mkdir -p /var/run/unishare/root || return 1
|
||||
config_foreach clean_webdav_user user
|
||||
config_foreach validate_share share webdav add_webdav_share
|
||||
{ config_webdav_header ; config_foreach add_webdav_user user ; } > /var/run/unishare/webdav.yml
|
||||
}
|
||||
|
||||
global_config() {
|
||||
local enabled
|
||||
local anonymous
|
||||
local webdav_port
|
||||
config_get enabled $1 enabled
|
||||
config_get anonymous $1 anonymous
|
||||
config_get webdav_port $1 webdav_port
|
||||
export -n "UNISHARE_G_ENABLED=$enabled"
|
||||
export -n "UNISHARE_G_ANONYMOUS=$anonymous"
|
||||
export -n "UNISHARE_G_DAVPORT=$webdav_port"
|
||||
}
|
||||
|
||||
boot() {
|
||||
export -n ONBOOT=1
|
||||
start "$@"
|
||||
}
|
||||
|
||||
start_service() {
|
||||
clean_samba
|
||||
config_load unishare
|
||||
config_foreach global_config global
|
||||
[ "$UNISHARE_G_ENABLED" = "1" ] || {
|
||||
uci commit samba4
|
||||
[ "$ONBOOT" = "1" ] || /etc/init.d/samba4 reload
|
||||
clean_unused_smb_users
|
||||
return 0
|
||||
}
|
||||
[ -z "$UNISHARE_G_DAVPORT" ] && UNISHARE_G_DAVPORT=8080
|
||||
reconfig_samba || return 1
|
||||
clean_unused_smb_users
|
||||
[ "$ONBOOT" = "1" ] || /etc/init.d/samba4 reload
|
||||
config_webdav || return 1
|
||||
|
||||
# start webdav2 daemon
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/webdav2 -c /var/run/unishare/webdav.yml
|
||||
procd_set_param respawn
|
||||
procd_set_param file /var/run/unishare/webdav.yml
|
||||
procd_set_param limits nofile=16384
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
shutdown() {
|
||||
export -n ONSHUTDOWN=1
|
||||
stop
|
||||
}
|
||||
|
||||
service_stopped() {
|
||||
[ "$ONSHUTDOWN" = "1" ] && return 0
|
||||
|
||||
clean_samba
|
||||
[ `uci changes samba4 | wc -l` -gt 0 ] && {
|
||||
uci commit samba4
|
||||
/etc/init.d/samba4 reload
|
||||
}
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "unishare"
|
||||
}
|
||||
Reference in New Issue
Block a user