debian: Fix Debian package handler when --use-installed not given.
[febootstrap.git] / src / febootstrap_debian.ml
1 (* febootstrap 3
2  * Copyright (C) 2009-2011 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  *)
18
19 (* Debian support. *)
20
21 open Unix
22 open Printf
23
24 open Febootstrap_package_handlers
25 open Febootstrap_utils
26 open Febootstrap_cmdline
27
28 (* Create a temporary directory for use by all the functions in this file. *)
29 let tmpdir = tmpdir ()
30
31 let debian_detect () =
32   file_exists "/etc/debian_version" &&
33     Config.aptitude <> "no" && Config.apt_cache <> "no" && Config.dpkg <> "no"
34
35 let installed_pkgs = ref []
36
37 let debian_init () =
38   installed_pkgs :=
39     run_command_get_lines "dpkg-query --show --showformat='${Package}\\n'"
40
41 let get_installed_pkgs () =
42   match !installed_pkgs with
43     | [] -> assert false
44     | pkgs -> pkgs
45
46 let rec debian_resolve_dependencies_and_download names =
47   let cmd =
48     sprintf "%s depends --recurse -i %s | grep -v '^[<[:space:]]'"
49       Config.apt_cache
50       (String.concat " " (List.map Filename.quote names)) in
51   let pkgs = run_command_get_lines cmd in
52   let pkgs =
53     if Config.apt_cache_depends_recurse_broken then
54       workaround_broken_apt_cache_depends_recurse (sort_uniq pkgs)
55     else
56       pkgs in
57
58   (* Exclude packages matching [--exclude] regexps on the command line. *)
59   let pkgs =
60     List.filter (
61       fun name ->
62         not (List.exists (fun re -> Str.string_match re name 0) excludes)
63     ) pkgs in
64
65   let present_pkgs, download_pkgs =
66     if not use_installed then
67       [], pkgs
68     else
69       List.partition (
70         fun pkg -> List.exists ((=) pkg) (get_installed_pkgs ())
71       ) pkgs in
72
73   debug "wanted packages (present / download): %s / %s\n"
74     (String.concat " " present_pkgs)
75     (String.concat " " download_pkgs);
76
77   (* Download the packages. *)
78   if (List.length download_pkgs > 0)
79   then (
80     let cmd =
81       sprintf "umask 0000; cd %s && %s download %s"
82         (Filename.quote tmpdir)
83         Config.aptitude
84         (String.concat " " (List.map Filename.quote download_pkgs)) in
85     run_command cmd
86   );
87
88   (* Find out what aptitude downloaded. *)
89   let files = Sys.readdir tmpdir in
90
91   let download_pkgs = List.map (
92     fun pkg ->
93       (* Look for 'pkg_*.deb' in the list of files. *)
94       let pre = pkg ^ "_" in
95       let r = ref "" in
96       try
97         for i = 0 to Array.length files - 1 do
98           if string_prefix pre files.(i) then (
99             r := files.(i);
100             files.(i) <- "";
101             raise Exit
102           )
103         done;
104         eprintf "febootstrap: aptitude: error: no file was downloaded corresponding to package %s\n" pkg;
105         exit 1
106       with
107           Exit -> !r
108   ) download_pkgs in
109
110   List.sort compare (List.append present_pkgs download_pkgs)
111
112 (* On Ubuntu 10.04 LTS, apt-cache depends --recurse is broken.  It
113  * doesn't return the full list of dependencies.  Therefore recurse
114  * into these dependencies one by one until we reach a fixpoint.
115  *)
116 and workaround_broken_apt_cache_depends_recurse names =
117   debug "workaround for broken 'apt-cache depends --recurse' command:\n  %s"
118     (String.concat " " names);
119
120   let names' =
121     List.map (
122       fun name ->
123         let cmd =
124           sprintf "%s depends --recurse -i %s | grep -v '^[<[:space:]]'"
125             Config.apt_cache (Filename.quote name) in
126         run_command_get_lines cmd
127     ) names in
128   let names' = List.flatten names' in
129   let names' = sort_uniq names' in
130   if names <> names' then
131     workaround_broken_apt_cache_depends_recurse names'
132   else
133     names
134
135 let debian_list_files_downloaded pkg =
136   debug "unpacking %s ..." pkg;
137
138   (* We actually need to extract the file in order to get the
139    * information about modes etc.
140    *)
141   let pkgdir = tmpdir // pkg ^ ".d" in
142   mkdir pkgdir 0o755;
143   let cmd =
144     sprintf "umask 0000; dpkg-deb --fsys-tarfile %s | (cd %s && tar xf -)"
145       (tmpdir // pkg) pkgdir in
146   run_command cmd;
147
148   let cmd = sprintf "cd %s && find ." pkgdir in
149   let lines = run_command_get_lines cmd in
150
151   let files = List.map (
152     fun path ->
153       assert (path.[0] = '.');
154       (* No leading '.' *)
155       let path =
156         if path = "." then "/"
157         else String.sub path 1 (String.length path - 1) in
158
159       (* Find out what it is and get the canonical filename. *)
160       let statbuf = lstat (pkgdir // path) in
161       let is_dir = statbuf.st_kind = S_DIR in
162
163       (* No per-file metadata like in RPM, but we can synthesize it
164        * from the path.
165        *)
166       let config = statbuf.st_kind = S_REG && string_prefix "/etc/" path in
167
168       let mode = statbuf.st_perm in
169
170       (path, { ft_dir = is_dir; ft_config = config; ft_mode = mode;
171                ft_ghost = false; ft_size = statbuf.st_size })
172   ) lines in
173
174   files
175
176 let debian_list_files_installed pkg =
177   debug "using installed package %s ..." pkg;
178   let cmd = sprintf "dpkg-query --listfiles %s" pkg in
179   let lines = run_command_get_lines cmd in
180   (* filter out lines not directly describing fs objects such as
181      "package diverts others to: /path/to/..." *)
182   let lines = List.filter (
183     fun l -> l.[0] = '/' && l.[1] != '.'
184   ) lines in
185   let files = List.map (
186     fun path ->
187       let statbuf = lstat path in
188       let is_dir = statbuf.st_kind = S_DIR in
189       let config = statbuf.st_kind = S_REG && string_prefix "/etc/" path in
190       let mode = statbuf.st_perm in
191       (path, { ft_dir = is_dir; ft_config = config; ft_mode = mode;
192                ft_ghost = false; ft_size = statbuf.st_size })
193   ) lines in
194   files
195
196 let debian_list_files pkg =
197   if use_installed && List.exists ((=) pkg) (get_installed_pkgs ()) then
198     debian_list_files_installed pkg
199   else
200     debian_list_files_downloaded pkg
201
202 (* Easy because we already unpacked the archive above. *)
203 let debian_get_file_from_package pkg file =
204   if use_installed && List.exists (fun p -> p = pkg) (get_installed_pkgs ())
205   then
206     file
207   else
208     tmpdir // pkg ^ ".d" // file
209
210 let () =
211   let ph = {
212     ph_detect = debian_detect;
213     ph_init = debian_init;
214     ph_resolve_dependencies_and_download =
215       debian_resolve_dependencies_and_download;
216     ph_list_files = debian_list_files;
217     ph_get_file_from_package = debian_get_file_from_package;
218   } in
219   register_package_handler "debian" ph