build: ipkg-build use fakeroot with PKG_FILE_MODES
The `ipkg-build` script converts a folder into a `opkg` installable
package. Until now it would use root:root for all packages and try to
preserve file modes.
This has the two drawbacks of packages want to add non-root files or add
SUID files, like the `sudo` package does.
To give more flexibility regarding file modes and avoid init script
hacks, a new variable called `PKG_FILE_MODES`. The variable contains a
list of files modes in the format `path:owner:group:mode`.
An example for the `sudo` package below:
```
PKG_FILE_MODES:=\
        /usr/bin/sudo:root:root:4755 \
        /etc/sudoers:root:root:0440
```
The `ipkg-build` now runs within a fakeroot environment to set any mode
and directly store it in the resulting `ipk` package archive.
Both options `-o` and `-g` are no longer required due to the introduction
of the more flexible `-m` options, which takes the `PKG_FILE_MODES` as
input.
Lastly the option `-c` is removed as it's unused within the script.
Signed-off-by: Paul Spooren <mail@aparcar.org>
			
			
This commit is contained in:
		 Paul Spooren
					Paul Spooren
				
			
				
					committed by
					
						 Daniel Golle
						Daniel Golle
					
				
			
			
				
	
			
			
			 Daniel Golle
						Daniel Golle
					
				
			
						parent
						
							2bd55d0a2b
						
					
				
				
					commit
					353ce2e521
				
			| @@ -9,10 +9,6 @@ ifndef DUMP | |||||||
|   include $(INCLUDE_DIR)/feeds.mk |   include $(INCLUDE_DIR)/feeds.mk | ||||||
| endif | endif | ||||||
|  |  | ||||||
| # invoke ipkg-build with some default options |  | ||||||
| IPKG_BUILD:= \ |  | ||||||
|   $(SCRIPT_DIR)/ipkg-build -c -o 0 -g 0 |  | ||||||
|  |  | ||||||
| IPKG_REMOVE:= \ | IPKG_REMOVE:= \ | ||||||
|   $(SCRIPT_DIR)/ipkg-remove |   $(SCRIPT_DIR)/ipkg-remove | ||||||
|  |  | ||||||
| @@ -262,7 +258,7 @@ $(_endef) | |||||||
|     endif |     endif | ||||||
|  |  | ||||||
| 	$(INSTALL_DIR) $$(PDIR_$(1)) | 	$(INSTALL_DIR) $$(PDIR_$(1)) | ||||||
| 	$(IPKG_BUILD) $$(IDIR_$(1)) $$(PDIR_$(1)) | 	$(FAKEROOT) $(SCRIPT_DIR)/ipkg-build -m "$(PKG_FILE_MODES)" $$(IDIR_$(1)) $$(PDIR_$(1)) | ||||||
| 	@[ -f $$(IPKG_$(1)) ] | 	@[ -f $$(IPKG_$(1)) ] | ||||||
|  |  | ||||||
|     $(1)-clean: |     $(1)-clean: | ||||||
|   | |||||||
| @@ -77,23 +77,15 @@ pkg_appears_sane() { | |||||||
| ### | ### | ||||||
| # ipkg-build "main" | # ipkg-build "main" | ||||||
| ### | ### | ||||||
| ogargs="" | file_modes="" | ||||||
| noclean=0 | usage="Usage: $0 [-v] [-h] [-m] <pkg_directory> [<destination_directory>]" | ||||||
| usage="Usage: $0 [-c] [-C] [-o owner] [-g group] <pkg_directory> [<destination_directory>]" | while getopts "hvm:" opt; do | ||||||
| while getopts "cg:ho:v" opt; do |  | ||||||
|     case $opt in |     case $opt in | ||||||
| 	o ) owner=$OPTARG |  | ||||||
| 	    ogargs="--owner=$owner" |  | ||||||
| 	    ;; |  | ||||||
| 	g ) group=$OPTARG |  | ||||||
| 	    ogargs="$ogargs --group=$group" |  | ||||||
| 	    ;; |  | ||||||
| 	c ) ;; |  | ||||||
| 	C ) noclean=1;; |  | ||||||
| 	v ) echo $version | 	v ) echo $version | ||||||
| 	    exit 0 | 	    exit 0 | ||||||
| 	    ;; | 	    ;; | ||||||
| 	h ) 	echo $usage  >&2 ;; | 	h ) 	echo $usage  >&2 ;; | ||||||
|  | 	m )	file_modes=$OPTARG ;; | ||||||
| 	\? ) 	echo $usage  >&2 | 	\? ) 	echo $usage  >&2 | ||||||
| 	esac | 	esac | ||||||
| done | done | ||||||
| @@ -144,21 +136,38 @@ tmp_dir=$dest_dir/IPKG_BUILD.$$ | |||||||
| mkdir $tmp_dir | mkdir $tmp_dir | ||||||
|  |  | ||||||
| echo $CONTROL > $tmp_dir/tarX | echo $CONTROL > $tmp_dir/tarX | ||||||
| # Preserve permissions (-p) when creating data.tar.gz as non-root user | cd $pkg_dir | ||||||
| ( cd $pkg_dir && $TAR $ogargs -X $tmp_dir/tarX --format=gnu --sort=name -cpf -  --mtime="$TIMESTAMP" . | $GZIP -n - > $tmp_dir/data.tar.gz ) | for file_mode in $file_modes; do | ||||||
|  | 	case $file_mode in | ||||||
|  | 	/*:*:*:*) | ||||||
|  | 	    ;; | ||||||
|  | 	*) | ||||||
|  | 	    echo "ERROR: file modes must use absolute path and contain user:group:mode" | ||||||
|  | 	    echo "$file_mode" | ||||||
|  | 	    exit 1 | ||||||
|  | 	    ;; | ||||||
|  | 	esac | ||||||
|  | 	path=$(echo "$file_mode" | cut -d ':' -f 1) | ||||||
|  | 	user_group=$(echo "$file_mode" | cut -d ':' -f 2-3) | ||||||
|  | 	mode=$(echo "$file_mode" | cut -d ':' -f 4) | ||||||
|  |  | ||||||
|  | 	chown "$user_group" "$pkg_dir/$path" | ||||||
|  | 	chmod  "$mode" "$pkg_dir/$path" | ||||||
|  | done | ||||||
|  | $TAR -X $tmp_dir/tarX --format=gnu --sort=name -cpf - --mtime="$TIMESTAMP" . | $GZIP -n - > $tmp_dir/data.tar.gz | ||||||
|  |  | ||||||
| installed_size=`stat -c "%s" $tmp_dir/data.tar.gz` | installed_size=`stat -c "%s" $tmp_dir/data.tar.gz` | ||||||
| sed -i -e "s/^Installed-Size: .*/Installed-Size: $installed_size/" \ | sed -i -e "s/^Installed-Size: .*/Installed-Size: $installed_size/" \ | ||||||
| 	$pkg_dir/$CONTROL/control | 	$pkg_dir/$CONTROL/control | ||||||
|  |  | ||||||
| ( cd $pkg_dir/$CONTROL && $TAR $ogargs --format=gnu --sort=name -cf -  --mtime="$TIMESTAMP" . | $GZIP -n - > $tmp_dir/control.tar.gz ) | ( cd $pkg_dir/$CONTROL && $TAR --format=gnu --sort=name -cf -  --mtime="$TIMESTAMP" . | $GZIP -n - > $tmp_dir/control.tar.gz ) | ||||||
| rm $tmp_dir/tarX | rm $tmp_dir/tarX | ||||||
|  |  | ||||||
| echo "2.0" > $tmp_dir/debian-binary | echo "2.0" > $tmp_dir/debian-binary | ||||||
|  |  | ||||||
| pkg_file=$dest_dir/${pkg}_${version}_${arch}.ipk | pkg_file=$dest_dir/${pkg}_${version}_${arch}.ipk | ||||||
| rm -f $pkg_file | rm -f $pkg_file | ||||||
| ( cd $tmp_dir && $TAR $ogargs --format=gnu --sort=name -cf -  --mtime="$TIMESTAMP" ./debian-binary ./data.tar.gz ./control.tar.gz | $GZIP -n - > $pkg_file ) | ( cd $tmp_dir && $TAR --format=gnu --sort=name -cf -  --mtime="$TIMESTAMP" ./debian-binary ./data.tar.gz ./control.tar.gz | $GZIP -n - > $pkg_file ) | ||||||
|  |  | ||||||
| rm $tmp_dir/debian-binary $tmp_dir/data.tar.gz $tmp_dir/control.tar.gz | rm $tmp_dir/debian-binary $tmp_dir/data.tar.gz $tmp_dir/control.tar.gz | ||||||
| rmdir $tmp_dir | rmdir $tmp_dir | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user