summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package_manager/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/package_manager/__init__.py')
-rw-r--r--meta/lib/oe/package_manager/__init__.py433
1 files changed, 1 insertions, 432 deletions
diff --git a/meta/lib/oe/package_manager/__init__.py b/meta/lib/oe/package_manager/__init__.py
index 36606d8cb3..4deb12837a 100644
--- a/meta/lib/oe/package_manager/__init__.py
+++ b/meta/lib/oe/package_manager/__init__.py
@@ -149,59 +149,6 @@ class Indexer(object, metaclass=ABCMeta):
149 def write_index(self): 149 def write_index(self):
150 pass 150 pass
151 151
152class OpkgIndexer(Indexer):
153 def write_index(self):
154 arch_vars = ["ALL_MULTILIB_PACKAGE_ARCHS",
155 "SDK_PACKAGE_ARCHS",
156 ]
157
158 opkg_index_cmd = bb.utils.which(os.getenv('PATH'), "opkg-make-index")
159 if self.d.getVar('PACKAGE_FEED_SIGN') == '1':
160 signer = get_signer(self.d, self.d.getVar('PACKAGE_FEED_GPG_BACKEND'))
161 else:
162 signer = None
163
164 if not os.path.exists(os.path.join(self.deploy_dir, "Packages")):
165 open(os.path.join(self.deploy_dir, "Packages"), "w").close()
166
167 index_cmds = set()
168 index_sign_files = set()
169 for arch_var in arch_vars:
170 archs = self.d.getVar(arch_var)
171 if archs is None:
172 continue
173
174 for arch in archs.split():
175 pkgs_dir = os.path.join(self.deploy_dir, arch)
176 pkgs_file = os.path.join(pkgs_dir, "Packages")
177
178 if not os.path.isdir(pkgs_dir):
179 continue
180
181 if not os.path.exists(pkgs_file):
182 open(pkgs_file, "w").close()
183
184 index_cmds.add('%s --checksum md5 --checksum sha256 -r %s -p %s -m %s' %
185 (opkg_index_cmd, pkgs_file, pkgs_file, pkgs_dir))
186
187 index_sign_files.add(pkgs_file)
188
189 if len(index_cmds) == 0:
190 bb.note("There are no packages in %s!" % self.deploy_dir)
191 return
192
193 oe.utils.multiprocess_launch(create_index, index_cmds, self.d)
194
195 if signer:
196 feed_sig_type = self.d.getVar('PACKAGE_FEED_GPG_SIGNATURE_TYPE')
197 is_ascii_sig = (feed_sig_type.upper() != "BIN")
198 for f in index_sign_files:
199 signer.detach_sign(f,
200 self.d.getVar('PACKAGE_FEED_GPG_NAME'),
201 self.d.getVar('PACKAGE_FEED_GPG_PASSPHRASE_FILE'),
202 armor=is_ascii_sig)
203
204
205class DpkgIndexer(Indexer): 152class DpkgIndexer(Indexer):
206 def _create_configs(self): 153 def _create_configs(self):
207 bb.utils.mkdirhier(self.apt_conf_dir) 154 bb.utils.mkdirhier(self.apt_conf_dir)
@@ -286,33 +233,6 @@ class PkgsList(object, metaclass=ABCMeta):
286 def list_pkgs(self): 233 def list_pkgs(self):
287 pass 234 pass
288 235
289class OpkgPkgsList(PkgsList):
290 def __init__(self, d, rootfs_dir, config_file):
291 super(OpkgPkgsList, self).__init__(d, rootfs_dir)
292
293 self.opkg_cmd = bb.utils.which(os.getenv('PATH'), "opkg")
294 self.opkg_args = "-f %s -o %s " % (config_file, rootfs_dir)
295 self.opkg_args += self.d.getVar("OPKG_ARGS")
296
297 def list_pkgs(self, format=None):
298 cmd = "%s %s status" % (self.opkg_cmd, self.opkg_args)
299
300 # opkg returns success even when it printed some
301 # "Collected errors:" report to stderr. Mixing stderr into
302 # stdout then leads to random failures later on when
303 # parsing the output. To avoid this we need to collect both
304 # output streams separately and check for empty stderr.
305 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
306 cmd_output, cmd_stderr = p.communicate()
307 cmd_output = cmd_output.decode("utf-8")
308 cmd_stderr = cmd_stderr.decode("utf-8")
309 if p.returncode or cmd_stderr:
310 bb.fatal("Cannot get the installed packages list. Command '%s' "
311 "returned %d and stderr:\n%s" % (cmd, p.returncode, cmd_stderr))
312
313 return opkg_query(cmd_output)
314
315
316class DpkgPkgsList(PkgsList): 236class DpkgPkgsList(PkgsList):
317 237
318 def list_pkgs(self): 238 def list_pkgs(self):
@@ -763,358 +683,6 @@ class OpkgDpkgPM(PackageManager):
763 def _handle_intercept_failure(self, registered_pkgs): 683 def _handle_intercept_failure(self, registered_pkgs):
764 self.mark_packages("unpacked", registered_pkgs.split()) 684 self.mark_packages("unpacked", registered_pkgs.split())
765 685
766class OpkgPM(OpkgDpkgPM):
767 def __init__(self, d, target_rootfs, config_file, archs, task_name='target', ipk_repo_workdir="oe-rootfs-repo", filterbydependencies=True, prepare_index=True):
768 super(OpkgPM, self).__init__(d, target_rootfs)
769
770 self.config_file = config_file
771 self.pkg_archs = archs
772 self.task_name = task_name
773
774 self.deploy_dir = oe.path.join(self.d.getVar('WORKDIR'), ipk_repo_workdir)
775 self.deploy_lock_file = os.path.join(self.deploy_dir, "deploy.lock")
776 self.opkg_cmd = bb.utils.which(os.getenv('PATH'), "opkg")
777 self.opkg_args = "--volatile-cache -f %s -t %s -o %s " % (self.config_file, self.d.expand('${T}/ipktemp/') ,target_rootfs)
778 self.opkg_args += self.d.getVar("OPKG_ARGS")
779
780 if prepare_index:
781 create_packages_dir(self.d, self.deploy_dir, d.getVar("DEPLOY_DIR_IPK"), "package_write_ipk", filterbydependencies)
782
783 opkg_lib_dir = self.d.getVar('OPKGLIBDIR')
784 if opkg_lib_dir[0] == "/":
785 opkg_lib_dir = opkg_lib_dir[1:]
786
787 self.opkg_dir = os.path.join(target_rootfs, opkg_lib_dir, "opkg")
788
789 bb.utils.mkdirhier(self.opkg_dir)
790
791 self.saved_opkg_dir = self.d.expand('${T}/saved/%s' % self.task_name)
792 if not os.path.exists(self.d.expand('${T}/saved')):
793 bb.utils.mkdirhier(self.d.expand('${T}/saved'))
794
795 self.from_feeds = (self.d.getVar('BUILD_IMAGES_FROM_FEEDS') or "") == "1"
796 if self.from_feeds:
797 self._create_custom_config()
798 else:
799 self._create_config()
800
801 self.indexer = OpkgIndexer(self.d, self.deploy_dir)
802
803 def mark_packages(self, status_tag, packages=None):
804 """
805 This function will change a package's status in /var/lib/opkg/status file.
806 If 'packages' is None then the new_status will be applied to all
807 packages
808 """
809 status_file = os.path.join(self.opkg_dir, "status")
810
811 with open(status_file, "r") as sf:
812 with open(status_file + ".tmp", "w+") as tmp_sf:
813 if packages is None:
814 tmp_sf.write(re.sub(r"Package: (.*?)\n((?:[^\n]+\n)*?)Status: (.*)(?:unpacked|installed)",
815 r"Package: \1\n\2Status: \3%s" % status_tag,
816 sf.read()))
817 else:
818 if type(packages).__name__ != "list":
819 raise TypeError("'packages' should be a list object")
820
821 status = sf.read()
822 for pkg in packages:
823 status = re.sub(r"Package: %s\n((?:[^\n]+\n)*?)Status: (.*)(?:unpacked|installed)" % pkg,
824 r"Package: %s\n\1Status: \2%s" % (pkg, status_tag),
825 status)
826
827 tmp_sf.write(status)
828
829 os.rename(status_file + ".tmp", status_file)
830
831 def _create_custom_config(self):
832 bb.note("Building from feeds activated!")
833
834 with open(self.config_file, "w+") as config_file:
835 priority = 1
836 for arch in self.pkg_archs.split():
837 config_file.write("arch %s %d\n" % (arch, priority))
838 priority += 5
839
840 for line in (self.d.getVar('IPK_FEED_URIS') or "").split():
841 feed_match = re.match(r"^[ \t]*(.*)##([^ \t]*)[ \t]*$", line)
842
843 if feed_match is not None:
844 feed_name = feed_match.group(1)
845 feed_uri = feed_match.group(2)
846
847 bb.note("Add %s feed with URL %s" % (feed_name, feed_uri))
848
849 config_file.write("src/gz %s %s\n" % (feed_name, feed_uri))
850
851 """
852 Allow to use package deploy directory contents as quick devel-testing
853 feed. This creates individual feed configs for each arch subdir of those
854 specified as compatible for the current machine.
855 NOTE: Development-helper feature, NOT a full-fledged feed.
856 """
857 if (self.d.getVar('FEED_DEPLOYDIR_BASE_URI') or "") != "":
858 for arch in self.pkg_archs.split():
859 cfg_file_name = os.path.join(self.target_rootfs,
860 self.d.getVar("sysconfdir"),
861 "opkg",
862 "local-%s-feed.conf" % arch)
863
864 with open(cfg_file_name, "w+") as cfg_file:
865 cfg_file.write("src/gz local-%s %s/%s" %
866 (arch,
867 self.d.getVar('FEED_DEPLOYDIR_BASE_URI'),
868 arch))
869
870 if self.d.getVar('OPKGLIBDIR') != '/var/lib':
871 # There is no command line option for this anymore, we need to add
872 # info_dir and status_file to config file, if OPKGLIBDIR doesn't have
873 # the default value of "/var/lib" as defined in opkg:
874 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_LISTS_DIR VARDIR "/lib/opkg/lists"
875 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_INFO_DIR VARDIR "/lib/opkg/info"
876 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_STATUS_FILE VARDIR "/lib/opkg/status"
877 cfg_file.write("option info_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'info'))
878 cfg_file.write("option lists_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'lists'))
879 cfg_file.write("option status_file %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'status'))
880
881
882 def _create_config(self):
883 with open(self.config_file, "w+") as config_file:
884 priority = 1
885 for arch in self.pkg_archs.split():
886 config_file.write("arch %s %d\n" % (arch, priority))
887 priority += 5
888
889 config_file.write("src oe file:%s\n" % self.deploy_dir)
890
891 for arch in self.pkg_archs.split():
892 pkgs_dir = os.path.join(self.deploy_dir, arch)
893 if os.path.isdir(pkgs_dir):
894 config_file.write("src oe-%s file:%s\n" %
895 (arch, pkgs_dir))
896
897 if self.d.getVar('OPKGLIBDIR') != '/var/lib':
898 # There is no command line option for this anymore, we need to add
899 # info_dir and status_file to config file, if OPKGLIBDIR doesn't have
900 # the default value of "/var/lib" as defined in opkg:
901 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_LISTS_DIR VARDIR "/lib/opkg/lists"
902 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_INFO_DIR VARDIR "/lib/opkg/info"
903 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_STATUS_FILE VARDIR "/lib/opkg/status"
904 config_file.write("option info_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'info'))
905 config_file.write("option lists_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'lists'))
906 config_file.write("option status_file %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR'), 'opkg', 'status'))
907
908 def insert_feeds_uris(self, feed_uris, feed_base_paths, feed_archs):
909 if feed_uris == "":
910 return
911
912 rootfs_config = os.path.join('%s/etc/opkg/base-feeds.conf'
913 % self.target_rootfs)
914
915 os.makedirs('%s/etc/opkg' % self.target_rootfs, exist_ok=True)
916
917 feed_uris = self.construct_uris(feed_uris.split(), feed_base_paths.split())
918 archs = self.pkg_archs.split() if feed_archs is None else feed_archs.split()
919
920 with open(rootfs_config, "w+") as config_file:
921 uri_iterator = 0
922 for uri in feed_uris:
923 if archs:
924 for arch in archs:
925 if (feed_archs is None) and (not os.path.exists(oe.path.join(self.deploy_dir, arch))):
926 continue
927 bb.note('Adding opkg feed url-%s-%d (%s)' %
928 (arch, uri_iterator, uri))
929 config_file.write("src/gz uri-%s-%d %s/%s\n" %
930 (arch, uri_iterator, uri, arch))
931 else:
932 bb.note('Adding opkg feed url-%d (%s)' %
933 (uri_iterator, uri))
934 config_file.write("src/gz uri-%d %s\n" %
935 (uri_iterator, uri))
936
937 uri_iterator += 1
938
939 def update(self):
940 self.deploy_dir_lock()
941
942 cmd = "%s %s update" % (self.opkg_cmd, self.opkg_args)
943
944 try:
945 subprocess.check_output(cmd.split(), stderr=subprocess.STDOUT)
946 except subprocess.CalledProcessError as e:
947 self.deploy_dir_unlock()
948 bb.fatal("Unable to update the package index files. Command '%s' "
949 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))
950
951 self.deploy_dir_unlock()
952
953 def install(self, pkgs, attempt_only=False):
954 if not pkgs:
955 return
956
957 cmd = "%s %s" % (self.opkg_cmd, self.opkg_args)
958 for exclude in (self.d.getVar("PACKAGE_EXCLUDE") or "").split():
959 cmd += " --add-exclude %s" % exclude
960 for bad_recommendation in (self.d.getVar("BAD_RECOMMENDATIONS") or "").split():
961 cmd += " --add-ignore-recommends %s" % bad_recommendation
962 cmd += " install "
963 cmd += " ".join(pkgs)
964
965 os.environ['D'] = self.target_rootfs
966 os.environ['OFFLINE_ROOT'] = self.target_rootfs
967 os.environ['IPKG_OFFLINE_ROOT'] = self.target_rootfs
968 os.environ['OPKG_OFFLINE_ROOT'] = self.target_rootfs
969 os.environ['INTERCEPT_DIR'] = self.intercepts_dir
970 os.environ['NATIVE_ROOT'] = self.d.getVar('STAGING_DIR_NATIVE')
971
972 try:
973 bb.note("Installing the following packages: %s" % ' '.join(pkgs))
974 bb.note(cmd)
975 output = subprocess.check_output(cmd.split(), stderr=subprocess.STDOUT).decode("utf-8")
976 bb.note(output)
977 failed_pkgs = []
978 for line in output.split('\n'):
979 if line.endswith("configuration required on target."):
980 bb.warn(line)
981 failed_pkgs.append(line.split(".")[0])
982 if failed_pkgs:
983 failed_postinsts_abort(failed_pkgs, self.d.expand("${T}/log.do_${BB_CURRENTTASK}"))
984 except subprocess.CalledProcessError as e:
985 (bb.fatal, bb.warn)[attempt_only]("Unable to install packages. "
986 "Command '%s' returned %d:\n%s" %
987 (cmd, e.returncode, e.output.decode("utf-8")))
988
989 def remove(self, pkgs, with_dependencies=True):
990 if not pkgs:
991 return
992
993 if with_dependencies:
994 cmd = "%s %s --force-remove --force-removal-of-dependent-packages remove %s" % \
995 (self.opkg_cmd, self.opkg_args, ' '.join(pkgs))
996 else:
997 cmd = "%s %s --force-depends remove %s" % \
998 (self.opkg_cmd, self.opkg_args, ' '.join(pkgs))
999
1000 try:
1001 bb.note(cmd)
1002 output = subprocess.check_output(cmd.split(), stderr=subprocess.STDOUT).decode("utf-8")
1003 bb.note(output)
1004 except subprocess.CalledProcessError as e:
1005 bb.fatal("Unable to remove packages. Command '%s' "
1006 "returned %d:\n%s" % (e.cmd, e.returncode, e.output.decode("utf-8")))
1007
1008 def write_index(self):
1009 self.deploy_dir_lock()
1010
1011 result = self.indexer.write_index()
1012
1013 self.deploy_dir_unlock()
1014
1015 if result is not None:
1016 bb.fatal(result)
1017
1018 def remove_packaging_data(self):
1019 bb.utils.remove(self.opkg_dir, True)
1020 # create the directory back, it's needed by PM lock
1021 bb.utils.mkdirhier(self.opkg_dir)
1022
1023 def remove_lists(self):
1024 if not self.from_feeds:
1025 bb.utils.remove(os.path.join(self.opkg_dir, "lists"), True)
1026
1027 def list_installed(self):
1028 return OpkgPkgsList(self.d, self.target_rootfs, self.config_file).list_pkgs()
1029
1030 def dummy_install(self, pkgs):
1031 """
1032 The following function dummy installs pkgs and returns the log of output.
1033 """
1034 if len(pkgs) == 0:
1035 return
1036
1037 # Create an temp dir as opkg root for dummy installation
1038 temp_rootfs = self.d.expand('${T}/opkg')
1039 opkg_lib_dir = self.d.getVar('OPKGLIBDIR')
1040 if opkg_lib_dir[0] == "/":
1041 opkg_lib_dir = opkg_lib_dir[1:]
1042 temp_opkg_dir = os.path.join(temp_rootfs, opkg_lib_dir, 'opkg')
1043 bb.utils.mkdirhier(temp_opkg_dir)
1044
1045 opkg_args = "-f %s -o %s " % (self.config_file, temp_rootfs)
1046 opkg_args += self.d.getVar("OPKG_ARGS")
1047
1048 cmd = "%s %s update" % (self.opkg_cmd, opkg_args)
1049 try:
1050 subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
1051 except subprocess.CalledProcessError as e:
1052 bb.fatal("Unable to update. Command '%s' "
1053 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))
1054
1055 # Dummy installation
1056 cmd = "%s %s --noaction install %s " % (self.opkg_cmd,
1057 opkg_args,
1058 ' '.join(pkgs))
1059 try:
1060 output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
1061 except subprocess.CalledProcessError as e:
1062 bb.fatal("Unable to dummy install packages. Command '%s' "
1063 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))
1064
1065 bb.utils.remove(temp_rootfs, True)
1066
1067 return output
1068
1069 def backup_packaging_data(self):
1070 # Save the opkglib for increment ipk image generation
1071 if os.path.exists(self.saved_opkg_dir):
1072 bb.utils.remove(self.saved_opkg_dir, True)
1073 shutil.copytree(self.opkg_dir,
1074 self.saved_opkg_dir,
1075 symlinks=True)
1076
1077 def recover_packaging_data(self):
1078 # Move the opkglib back
1079 if os.path.exists(self.saved_opkg_dir):
1080 if os.path.exists(self.opkg_dir):
1081 bb.utils.remove(self.opkg_dir, True)
1082
1083 bb.note('Recover packaging data')
1084 shutil.copytree(self.saved_opkg_dir,
1085 self.opkg_dir,
1086 symlinks=True)
1087
1088 def package_info(self, pkg):
1089 """
1090 Returns a dictionary with the package info.
1091 """
1092 cmd = "%s %s info %s" % (self.opkg_cmd, self.opkg_args, pkg)
1093 pkg_info = super(OpkgPM, self).package_info(pkg, cmd)
1094
1095 pkg_arch = pkg_info[pkg]["arch"]
1096 pkg_filename = pkg_info[pkg]["filename"]
1097 pkg_info[pkg]["filepath"] = \
1098 os.path.join(self.deploy_dir, pkg_arch, pkg_filename)
1099
1100 return pkg_info
1101
1102 def extract(self, pkg):
1103 """
1104 Returns the path to a tmpdir where resides the contents of a package.
1105
1106 Deleting the tmpdir is responsability of the caller.
1107 """
1108 pkg_info = self.package_info(pkg)
1109 if not pkg_info:
1110 bb.fatal("Unable to get information for package '%s' while "
1111 "trying to extract the package." % pkg)
1112
1113 tmp_dir = super(OpkgPM, self).extract(pkg, pkg_info)
1114 bb.utils.remove(os.path.join(tmp_dir, "data.tar.xz"))
1115
1116 return tmp_dir
1117
1118class DpkgPM(OpkgDpkgPM): 686class DpkgPM(OpkgDpkgPM):
1119 def __init__(self, d, target_rootfs, archs, base_archs, apt_conf_dir=None, deb_repo_workdir="oe-rootfs-repo", filterbydependencies=True): 687 def __init__(self, d, target_rootfs, archs, base_archs, apt_conf_dir=None, deb_repo_workdir="oe-rootfs-repo", filterbydependencies=True):
1120 super(DpkgPM, self).__init__(d, target_rootfs) 688 super(DpkgPM, self).__init__(d, target_rootfs)
@@ -1445,6 +1013,7 @@ class DpkgPM(OpkgDpkgPM):
1445 1013
1446def generate_index_files(d): 1014def generate_index_files(d):
1447 from oe.package_manager.rpm import RpmSubdirIndexer 1015 from oe.package_manager.rpm import RpmSubdirIndexer
1016 from oe.package_manager.ipk import OpkgIndexer
1448 1017
1449 classes = d.getVar('PACKAGE_CLASSES').replace("package_", "").split() 1018 classes = d.getVar('PACKAGE_CLASSES').replace("package_", "").split()
1450 1019