Remove building with NOCRYPTO option
[minix3.git] / external / bsd / pkg_install / dist / create / build.c
blob5ea7b8efff8de0261092e59c2958c0aae3611451
1 /* $NetBSD: build.c,v 1.1.1.8 2010/04/23 20:54:07 joerg Exp $ */
3 #if HAVE_CONFIG_H
4 #include "config.h"
5 #endif
6 #include <nbcompat.h>
7 #if HAVE_SYS_CDEFS_H
8 #include <sys/cdefs.h>
9 #endif
10 __RCSID("$NetBSD: build.c,v 1.1.1.8 2010/04/23 20:54:07 joerg Exp $");
12 /*-
13 * Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
14 * All rights reserved.
16 * This code was developed as part of Google's Summer of Code 2007 program.
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in
26 * the documentation and/or other materials provided with the
27 * distribution.
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
33 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
44 * FreeBSD install - a package for the installation and maintainance
45 * of non-core utilities.
47 * Redistribution and use in source and binary forms, with or without
48 * modification, are permitted provided that the following conditions
49 * are met:
50 * 1. Redistributions of source code must retain the above copyright
51 * notice, this list of conditions and the following disclaimer.
52 * 2. Redistributions in binary form must reproduce the above copyright
53 * notice, this list of conditions and the following disclaimer in the
54 * documentation and/or other materials provided with the distribution.
56 * Jordan K. Hubbard
57 * 18 July 1993
59 * This is the main body of the create module.
63 #include "lib.h"
64 #include "create.h"
66 #if HAVE_ERR_H
67 #include <err.h>
68 #endif
69 #if HAVE_GRP_H
70 #include <grp.h>
71 #endif
72 #if HAVE_PWD_H
73 #include <pwd.h>
74 #endif
75 #if HAVE_UNISTD_H
76 #include <unistd.h>
77 #endif
78 #if HAVE_FCNTL_H
79 #include <fcntl.h>
80 #endif
82 #include <archive.h>
83 #include <archive_entry.h>
85 static struct memory_file *contents_file;
86 static struct memory_file *comment_file;
87 static struct memory_file *desc_file;
88 static struct memory_file *install_file;
89 static struct memory_file *deinstall_file;
90 static struct memory_file *display_file;
91 static struct memory_file *build_version_file;
92 static struct memory_file *build_info_file;
93 static struct memory_file *size_pkg_file;
94 static struct memory_file *size_all_file;
95 static struct memory_file *preserve_file;
96 static struct memory_file *views_file;
98 static void
99 write_meta_file(struct memory_file *file, struct archive *archive)
101 struct archive_entry *entry;
103 entry = archive_entry_new();
104 archive_entry_set_pathname(entry, file->name);
105 archive_entry_copy_stat(entry, &file->st);
107 archive_entry_set_uname(entry, file->owner);
108 archive_entry_set_gname(entry, file->group);
110 if (archive_write_header(archive, entry))
111 errx(2, "cannot write to archive: %s", archive_error_string(archive));
113 archive_write_data(archive, file->data, file->len);
115 archive_entry_free(entry);
118 static void
119 write_entry(struct archive *archive, struct archive_entry *entry)
121 char buf[16384];
122 const char *name;
123 int fd;
124 off_t len;
125 ssize_t buf_len;
127 if (archive_entry_pathname(entry) == NULL) {
128 warnx("entry with NULL path");
129 return;
132 if (archive_write_header(archive, entry)) {
133 errx(2, "cannot write %s to archive: %s",
134 archive_entry_pathname(entry),
135 archive_error_string(archive));
138 /* Only regular files can have data. */
139 if (archive_entry_filetype(entry) != AE_IFREG ||
140 archive_entry_size(entry) == 0) {
141 archive_entry_free(entry);
142 return;
145 name = archive_entry_pathname(entry);
147 if ((fd = open(name, O_RDONLY)) == -1)
148 err(2, "cannot open data file %s", name);
150 len = archive_entry_size(entry);
152 while (len > 0) {
153 buf_len = (len > (off_t)sizeof(buf)) ? (ssize_t)sizeof(buf) : (ssize_t)len;
155 if ((buf_len = read(fd, buf, buf_len)) == 0)
156 break;
157 else if (buf_len < 0)
158 err(2, "cannot read from %s", name);
160 archive_write_data(archive, buf, (size_t)buf_len);
161 len -= buf_len;
164 close(fd);
166 archive_entry_free(entry);
169 static void
170 write_normal_file(const char *name, struct archive *archive,
171 struct archive_entry_linkresolver *resolver,
172 const char *owner, const char *group)
174 char buf[16384];
175 ssize_t buf_len;
176 struct archive_entry *entry, *sparse_entry;
177 struct stat st;
179 if (lstat(name, &st) == -1)
180 err(2, "lstat failed for file %s", name);
182 entry = archive_entry_new();
183 archive_entry_set_pathname(entry, name);
184 archive_entry_copy_stat(entry, &st);
186 if (owner != NULL) {
187 uid_t uid;
189 archive_entry_set_uname(entry, owner);
190 if (uid_from_user(owner, &uid) == -1)
191 errx(2, "user %s unknown", owner);
192 archive_entry_set_uid(entry, uid);
193 } else {
194 archive_entry_set_uname(entry, user_from_uid(st.st_uid, 1));
197 if (group != NULL) {
198 gid_t gid;
200 archive_entry_set_gname(entry, group);
201 if (gid_from_group(group, &gid) == -1)
202 errx(2, "group %s unknown", group);
203 archive_entry_set_gid(entry, gid);
204 } else {
205 archive_entry_set_gname(entry, group_from_gid(st.st_gid, 1));
208 if ((st.st_mode & S_IFMT) == S_IFLNK) {
209 buf_len = readlink(name, buf, sizeof buf);
210 if (buf_len < 0)
211 err(2, "cannot read symlink %s", name);
212 buf[buf_len] = '\0';
213 archive_entry_set_symlink(entry, buf);
216 archive_entry_linkify(resolver, &entry, &sparse_entry);
218 if (entry != NULL)
219 write_entry(archive, entry);
220 if (sparse_entry != NULL)
221 write_entry(archive, sparse_entry);
224 static void
225 make_dist(const char *pkg, const char *suffix, const package_t *plist)
227 char *archive_name;
228 const char *owner, *group;
229 const plist_t *p;
230 struct archive *archive;
231 struct archive_entry *entry, *sparse_entry;
232 struct archive_entry_linkresolver *resolver;
233 char *initial_cwd;
235 archive = archive_write_new();
236 archive_write_set_format_pax_restricted(archive);
237 if ((resolver = archive_entry_linkresolver_new()) == NULL)
238 errx(2, "cannot create link resolver");
239 archive_entry_linkresolver_set_strategy(resolver,
240 archive_format(archive));
242 if (CompressionType == NULL) {
243 if (strcmp(suffix, "tbz") == 0 ||
244 strcmp(suffix, "tar.bz2") == 0)
245 CompressionType = "bzip2";
246 else if (strcmp(suffix, "tgz") == 0 ||
247 strcmp(suffix, "tar.gz") == 0)
248 CompressionType = "gzip";
249 else
250 CompressionType = "none";
253 if (strcmp(CompressionType, "bzip2") == 0)
254 archive_write_set_compression_bzip2(archive);
255 else if (strcmp(CompressionType, "gzip") == 0)
256 archive_write_set_compression_gzip(archive);
257 else if (strcmp(CompressionType, "xz") == 0)
258 archive_write_set_compression_xz(archive);
259 else if (strcmp(CompressionType, "none") == 0)
260 archive_write_set_compression_none(archive);
261 else
262 errx(1, "Unspported compression type for -F: %s",
263 CompressionType);
265 archive_name = xasprintf("%s.%s", pkg, suffix);
267 if (archive_write_open_file(archive, archive_name))
268 errx(2, "cannot create archive: %s", archive_error_string(archive));
270 free(archive_name);
272 owner = DefaultOwner;
273 group = DefaultGroup;
275 write_meta_file(contents_file, archive);
276 write_meta_file(comment_file, archive);
277 write_meta_file(desc_file, archive);
279 if (Install)
280 write_meta_file(install_file, archive);
281 if (DeInstall)
282 write_meta_file(deinstall_file, archive);
283 if (Display)
284 write_meta_file(display_file, archive);
285 if (BuildVersion)
286 write_meta_file(build_version_file, archive);
287 if (BuildInfo)
288 write_meta_file(build_info_file, archive);
289 if (SizePkg)
290 write_meta_file(size_pkg_file, archive);
291 if (SizeAll)
292 write_meta_file(size_all_file, archive);
293 if (Preserve)
294 write_meta_file(preserve_file, archive);
295 if (create_views)
296 write_meta_file(views_file, archive);
298 initial_cwd = getcwd(NULL, 0);
300 for (p = plist->head; p; p = p->next) {
301 if (p->type == PLIST_FILE) {
302 write_normal_file(p->name, archive, resolver, owner, group);
303 } else if (p->type == PLIST_CWD) {
304 chdir(p->name);
305 } else if (p->type == PLIST_IGNORE) {
306 p = p->next;
307 } else if (p->type == PLIST_CHOWN) {
308 if (p->name != NULL)
309 owner = p->name;
310 else
311 owner = DefaultOwner;
312 } else if (p->type == PLIST_CHGRP) {
313 if (p->name != NULL)
314 group = p->name;
315 else
316 group = DefaultGroup;
320 entry = NULL;
321 archive_entry_linkify(resolver, &entry, &sparse_entry);
322 while (entry != NULL) {
323 write_entry(archive, entry);
324 entry = NULL;
325 archive_entry_linkify(resolver, &entry, &sparse_entry);
328 archive_entry_linkresolver_free(resolver);
330 if (archive_write_close(archive))
331 errx(2, "cannot finish archive: %s", archive_error_string(archive));
332 archive_write_finish(archive);
334 free(initial_cwd);
337 static struct memory_file *
338 load_and_add(package_t *plist, const char *input_name,
339 const char *target_name, mode_t perm)
341 struct memory_file *file;
343 file = load_memory_file(input_name, target_name, DefaultOwner,
344 DefaultGroup, perm);
345 add_plist(plist, PLIST_IGNORE, NULL);
346 add_plist(plist, PLIST_FILE, target_name);
348 return file;
351 static struct memory_file *
352 make_and_add(package_t *plist, const char *target_name,
353 char *content, mode_t perm)
355 struct memory_file *file;
357 file = make_memory_file(target_name, content, strlen(content),
358 DefaultOwner, DefaultGroup, perm);
359 add_plist(plist, PLIST_IGNORE, NULL);
360 add_plist(plist, PLIST_FILE, target_name);
362 return file;
366 pkg_build(const char *pkg, const char *full_pkg, const char *suffix,
367 package_t *plist)
369 char *plist_buf;
370 size_t plist_len;
372 /* Now put the release specific items in */
373 add_plist(plist, PLIST_CWD, ".");
374 comment_file = make_and_add(plist, COMMENT_FNAME, Comment, 0444);
375 desc_file = make_and_add(plist, DESC_FNAME, Desc, 0444);
377 if (Install) {
378 install_file = load_and_add(plist, Install, INSTALL_FNAME,
379 0555);
381 if (DeInstall) {
382 deinstall_file = load_and_add(plist, DeInstall,
383 DEINSTALL_FNAME, 0555);
385 if (Display) {
386 display_file = load_and_add(plist, Display,
387 DISPLAY_FNAME, 0444);
388 add_plist(plist, PLIST_DISPLAY, DISPLAY_FNAME);
390 if (BuildVersion) {
391 build_version_file = load_and_add(plist, BuildVersion,
392 BUILD_VERSION_FNAME, 0444);
394 if (BuildInfo) {
395 build_info_file = load_and_add(plist, BuildInfo,
396 BUILD_INFO_FNAME, 0444);
398 if (SizePkg) {
399 size_pkg_file = load_and_add(plist, SizePkg,
400 SIZE_PKG_FNAME, 0444);
402 if (SizeAll) {
403 size_all_file = load_and_add(plist, SizeAll,
404 SIZE_ALL_FNAME, 0444);
406 if (Preserve) {
407 preserve_file = load_and_add(plist, Preserve,
408 PRESERVE_FNAME, 0444);
410 if (create_views)
411 views_file = make_and_add(plist, VIEWS_FNAME, xstrdup(""), 0444);
413 /* Finally, write out the packing list */
414 stringify_plist(plist, &plist_buf, &plist_len, realprefix);
415 contents_file = make_memory_file(CONTENTS_FNAME, plist_buf, plist_len,
416 DefaultOwner, DefaultGroup, 0644);
418 /* And stick it into a tar ball */
419 make_dist(pkg, suffix, plist);
421 return TRUE; /* Success */