1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
/*
* "$Id: bsd.c 833 2010-12-30 00:00:50Z mike $"
*
* Free/Net/OpenBSD package gateway for the ESP Package Manager (EPM).
*
* Copyright 1999-2010 by Easy Software Products.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Contents:
*
* make_bsd() - Make a Free/Net/OpenBSD software distribution package.
* make_subpackage() - Create a subpackage...
*/
/*
* Include necessary headers...
*/
#include "epm.h"
/*
* Local functions...
*/
static int make_subpackage(const char *prodname, const char *directory,
const char *platname, dist_t *dist,
const char *subpackage);
/*
* 'make_bsd()' - Make a Free/Net/OpenBSD software distribution package.
*/
int /* O - 0 = success, 1 = fail */
make_bsd(const char *prodname, /* I - Product short name */
const char *directory, /* I - Directory for distribution files */
const char *platname, /* I - Platform name */
dist_t *dist, /* I - Distribution information */
struct utsname *platform) /* I - Platform information */
{
int i; /* Looping var */
if (make_subpackage(prodname, directory, platname, dist, NULL))
return (1);
for (i = 0; i < dist->num_subpackages; i ++)
if (make_subpackage(prodname, directory, platname, dist,
dist->subpackages[i]))
return (1);
return (0);
}
/*
* 'make_subpackage()' - Create a subpackage...
*/
static int /* O - 0 = success, 1 = fail */
make_subpackage(
const char *prodname, /* I - Product short name */
const char *directory, /* I - Directory for distribution files */
const char *platname, /* I - Platform name */
dist_t *dist, /* I - Distribution information */
const char *subpackage) /* I - Subpackage name */
{
int i; /* Looping var */
FILE *fp; /* Spec file */
char prodfull[1024]; /* Full subpackage name */
char name[1024]; /* Full product name */
char commentname[1024]; /* pkg comment filename */
char descrname[1024]; /* pkg descr filename */
char plistname[1024]; /* pkg plist filename */
char filename[1024]; /* Destination filename */
char *old_user, /* Old owner UID */
*old_group; /* Old group ID */
int old_mode; /* Old permissions */
file_t *file; /* Current distribution file */
command_t *c; /* Current command */
depend_t *d; /* Current dependency */
struct passwd *pwd; /* Pointer to user record */
struct group *grp; /* Pointer to group record */
char current[1024]; /* Current directory */
getcwd(current, sizeof(current));
if (subpackage)
snprintf(prodfull, sizeof(prodfull), "%s-%s", prodname, subpackage);
else
strlcpy(prodfull, prodname, sizeof(prodfull));
if (Verbosity)
printf("Creating %s *BSD pkg distribution...\n", prodfull);
if (dist->release[0])
{
if (platname[0])
snprintf(name, sizeof(name), "%s-%s-%s-%s", prodfull, dist->version,
dist->release, platname);
else
snprintf(name, sizeof(name), "%s-%s-%s", prodfull, dist->version,
dist->release);
}
else if (platname[0])
snprintf(name, sizeof(name), "%s-%s-%s", prodfull, dist->version, platname);
else
snprintf(name, sizeof(name), "%s-%s", prodfull, dist->version);
/*
* Write the descr file for pkg...
*/
if (Verbosity)
printf("Creating %s.descr file...\n", prodfull);
snprintf(descrname, sizeof(descrname), "%s/%s.descr", directory, prodfull);
if ((fp = fopen(descrname, "w")) == NULL)
{
fprintf(stderr, "epm: Unable to create descr file \"%s\" - %s\n", descrname,
strerror(errno));
return (1);
}
fprintf(fp, "%s\n", dist->product);
fclose(fp);
/*
* Write the comment file for pkg...
*/
if (Verbosity)
printf("Creating %s.comment file...\n", prodfull);
snprintf(commentname, sizeof(commentname), "%s/%s.comment", directory,
prodfull);
if ((fp = fopen(commentname, "w")) == NULL)
{
fprintf(stderr, "epm: Unable to create comment file \"%s\" - %s\n", commentname,
strerror(errno));
return (1);
}
fprintf(fp, "Summary: %s\n", dist->product);
fprintf(fp, "Name: %s\n", prodfull);
fprintf(fp, "Version: %s\n", dist->version);
fprintf(fp, "Release: %s\n", dist->release);
fprintf(fp, "Copyright: %s\n", dist->copyright);
fprintf(fp, "Packager: %s\n", dist->packager);
fprintf(fp, "Vendor: %s\n", dist->vendor);
fprintf(fp, "BuildRoot: %s/%s/%s.buildroot\n", current, directory, prodfull);
fputs("Group: Applications\n", fp);
fputs("Description:\n\n", fp);
for (i = 0; i < dist->num_descriptions; i ++)
if (dist->descriptions[i].subpackage == subpackage)
fprintf(fp, "%s\n", dist->descriptions[i].description);
fclose(fp);
/*
* Write the plist file for pkg...
*/
if (Verbosity)
printf("Creating %s.plist file...\n", prodfull);
snprintf(plistname, sizeof(plistname), "%s/%s.plist", directory, prodfull);
if ((fp = fopen(plistname, "w")) == NULL)
{
fprintf(stderr, "epm: Unable to create plist file \"%s\" - %s\n", plistname,
strerror(errno));
return (1);
}
/*
* FreeBSD and NetBSD support both "source directory" and "preserve files"
* options, OpenBSD does not...
*/
#ifdef __FreeBSD__
fprintf(fp, "@srcdir %s/%s/%s.buildroot\n", current, directory, prodfull);
fputs("@option preserve\n", fp);
#elif defined(__NetBSD__)
fprintf(fp, "@src %s/%s/%s.buildroot\n", current, directory, prodfull);
fputs("@option preserve\n", fp);
#endif /* __FreeBSD__ */
for (i = dist->num_depends, d = dist->depends; i > 0; i --, d ++)
{
if (d->subpackage != subpackage)
continue;
if (d->type == DEPEND_REQUIRES)
#ifdef __OpenBSD__
fprintf(fp, "@depend %s", d->product);
#else
fprintf(fp, "@pkgdep %s", d->product);
#endif /* __OpenBSD__ */
else
#ifdef __FreeBSD__
/*
* FreeBSD uses @conflicts...
*/
fprintf(fp, "@conflicts %s", d->product);
#elif defined(__OpenBSD__)
fprintf(fp, "@conflict %s", d->product);
#else
fprintf(fp, "@pkgcfl %s", d->product);
#endif /* __FreeBSD__ */
if (d->vernumber[0] > 0)
fprintf(fp, "-%s\n", d->version[0]);
else
putc('\n', fp);
}
for (i = dist->num_commands, c = dist->commands; i > 0; i --, c ++)
if (c->subpackage == subpackage)
switch (c->type)
{
case COMMAND_PRE_INSTALL :
fputs("WARNING: Package contains pre-install commands which are not supported\n"
" by the BSD packager.\n", stderr);
break;
case COMMAND_POST_INSTALL :
fprintf(fp, "@exec %s\n", c->command);
break;
case COMMAND_PRE_REMOVE :
fprintf(fp, "@unexec %s\n", c->command);
break;
case COMMAND_POST_REMOVE :
fputs("WARNING: Package contains post-removal commands which are not supported\n"
" by the BSD packager.\n", stderr);
break;
}
for (i = dist->num_files, file = dist->files; i > 0; i --, file ++)
if (tolower(file->type) == 'd' && file->subpackage == subpackage)
{
/*
* We create and update directories as postinstall commands to
* avoid a bug in the FreeBSD pkg_delete command.
*/
fprintf(fp, "@exec mkdir -p %s\n", file->dst);
fprintf(fp, "@exec chown %s:%s %s\n", file->user, file->group,
file->dst);
fprintf(fp, "@exec chmod %04o %s\n", file->mode, file->dst);
}
for (i = dist->num_files, file = dist->files, old_mode = 0, old_user = "",
old_group = "";
i > 0;
i --, file ++)
{
/*
* The FreeBSD pkg_delete command (at least) doesn't like creating
* and deleting directories. I don't know if other BSD's have the
* same problem, but for now just put the directory stuff in a
* postinstall script...
*/
if (tolower(file->type) == 'd' || file->subpackage != subpackage)
continue;
if (file->mode != old_mode)
fprintf(fp, "@mode %04o\n", old_mode = file->mode);
if (strcmp(file->user, old_user))
fprintf(fp, "@owner %s\n", old_user = file->user);
if (strcmp(file->group, old_group))
fprintf(fp, "@group %s\n", old_group = file->group);
switch (tolower(file->type))
{
case 'i' :
qprintf(fp, "usr/local/etc/rc.d/%s\n", file->dst);
break;
case 'c' :
case 'f' :
case 'l' :
#ifdef __OpenBSD__
qprintf(fp, "@file %s\n", file->dst + 1);
if (tolower(file->type) == 'c')
qprintf(fp, "@sample %s\n", file->dst + 1);
#else
qprintf(fp, "%s\n", file->dst + 1);
#endif /* __OpenBSD__ */
break;
}
}
/*
* Need to list directories to remove in reverse order after
* everything else...
*/
for (i = dist->num_files, file = dist->files + i - 1;
i > 0;
i --, file --)
if (tolower(file->type) == 'd' && file->subpackage == subpackage)
qprintf(fp, "@dirrm %s\n", file->dst + 1);
fclose(fp);
/*
* Copy the files over...
*/
if (Verbosity)
puts("Copying temporary distribution files...");
for (i = dist->num_files, file = dist->files; i > 0; i --, file ++)
{
if (file->subpackage != subpackage)
continue;
/*
* Find the username and groupname IDs...
*/
pwd = getpwnam(file->user);
grp = getgrnam(file->group);
endpwent();
endgrent();
/*
* Copy the file or make the directory or make the symlink as needed...
*/
switch (tolower(file->type))
{
case 'c' :
case 'f' :
snprintf(filename, sizeof(filename), "%s/%s.buildroot%s",
directory, prodfull, file->dst);
if (Verbosity > 1)
printf("%s -> %s...\n", file->src, filename);
if (copy_file(filename, file->src, file->mode, pwd ? pwd->pw_uid : 0,
grp ? grp->gr_gid : 0))
return (1);
break;
case 'i' :
snprintf(filename, sizeof(filename),
"%s/%s.buildroot/usr/local/etc/rc.d/%s", directory,
prodfull, file->dst);
if (Verbosity > 1)
printf("%s -> %s...\n", file->src, filename);
if (copy_file(filename, file->src, file->mode, pwd ? pwd->pw_uid : 0,
grp ? grp->gr_gid : 0))
return (1);
break;
case 'd' :
snprintf(filename, sizeof(filename), "%s/%s.buildroot%s",
directory, prodfull, file->dst);
if (Verbosity > 1)
printf("Directory %s...\n", filename);
make_directory(filename, file->mode, pwd ? pwd->pw_uid : 0,
grp ? grp->gr_gid : 0);
break;
case 'l' :
snprintf(filename, sizeof(filename), "%s/%s.buildroot%s",
directory, prodfull, file->dst);
if (Verbosity > 1)
printf("%s -> %s...\n", file->src, filename);
make_link(filename, file->src);
break;
}
}
/*
* Build the distribution...
*/
if (Verbosity)
printf("Building %s *BSD pkg binary distribution...\n", prodfull);
#ifdef __OpenBSD__
if (run_command(NULL, "pkg_create -p / -B %s/%s.buildroot "
"-c %s "
"-d %s "
"-f %s "
"%s.tgz",
directory, prodfull,
commentname,
descrname,
plistname,
name))
return (1);
if (run_command(NULL, "mv %s.tgz %s", name, directory))
return (1);
#elif defined(__FreeBSD__)
if (run_command(NULL, "/usr/sbin/pkg_create -p / "
"-c %s "
"-d %s "
"-f %s "
"%s/%s.tbz",
commentname,
descrname,
plistname,
directory, name))
return (1);
#else
if (run_command(NULL, "pkg_create -p / "
"-c %s "
"-d %s "
"-f %s "
"%s/%s.tgz",
commentname,
descrname,
plistname,
directory, name))
return (1);
#endif /* __OpenBSD__ */
/*
* Remove temporary files...
*/
if (!KeepFiles)
{
if (Verbosity)
puts("Removing temporary distribution files...");
snprintf(filename, sizeof(filename), "%s/%s.buildroot", directory,
prodfull);
unlink_directory(filename);
unlink(plistname);
unlink(commentname);
unlink(descrname);
}
return (0);
}
/*
* End of "$Id: bsd.c 833 2010-12-30 00:00:50Z mike $".
*/
|