forked from michaelrsweet/epm
-
Notifications
You must be signed in to change notification settings - Fork 8
/
slackware.c
311 lines (241 loc) · 9.43 KB
/
slackware.c
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
/*
* Slackware package gateway for the ESP Package Manager (EPM).
*
* Copyright © 2020 by Jim Jagielski
* Copyright 2003-2017 by Michael R Sweet
* Copyright 2003-2010 by Easy Software Products.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* 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_slackware()' - Make a Slackware software distribution packages.
*/
int /* O - 0 = success, 1 = fail */
make_slackware(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 */
REF(platform);
/*
* Check to see if we are being run as root...
*/
if (getuid()) {
fprintf(stderr, "ERROR: Can only make Slackware packages as root\n");
return (1);
}
/*
* Create subpackages...
*/
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()' - Make a Slackware 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 name of product */
filename[1024], /* Destination filename */
pkgname[1024]; /* Package filename */
file_t *file; /* Current distribution file */
command_t *c; /* Current command */
struct passwd *pwd; /* Pointer to user record */
struct group *grp; /* Pointer to group record */
struct utsname platform; /* Original platform data */
/*
* Figure out the full product name...
*/
if (subpackage)
snprintf(prodfull, sizeof(prodfull), "%s-%s", prodname, subpackage);
else
strlcpy(prodfull, prodname, sizeof(prodfull));
if (Verbosity)
printf("Creating Slackware %s pkg distribution...\n", prodfull);
/*
* Slackware uses the real machine type in its package names...
*/
if (uname(&platform)) {
fprintf(stderr, "ERROR: Can't get platform information: %s\n", strerror(errno));
return (1);
}
snprintf(pkgname, sizeof(pkgname), "%s-%s-%s-%s.tgz", prodfull, dist->version,
platform.machine, dist->release);
/*
* Make a copy of the distribution files...
*/
if (Verbosity)
puts("Copying temporary distribution files...");
for (i = dist->num_files, file = dist->files; i > 0; i--, file++) {
/*
* Check subpackage...
*/
if (file->subpackage != subpackage)
continue;
/*
* Find the user and group IDs...
*/
pwd = getpwnam(file->user);
grp = getgrnam(file->group);
endpwent();
endgrent();
/*
* Copy the file, make the directory, or make the symlink as needed...
*/
switch (tolower(file->type)) {
case 'c':
case 'f':
snprintf(filename, sizeof(filename), "%s/%s%s", directory, prodfull,
file->dst);
if (Verbosity > 1)
printf("F %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/etc/rc.d/%s", directory, prodfull,
file->dst);
if (Verbosity > 1)
printf("I %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%s", directory, prodfull,
file->dst);
if (Verbosity > 1)
printf("D %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%s", directory, prodfull,
file->dst);
if (Verbosity > 1)
printf("L %s -> %s...\n", file->src, filename);
make_link(filename, file->src);
break;
}
}
/*
* Write descriptions and post-install commands as needed...
*/
for (i = 0; i < dist->num_descriptions; i++)
if (dist->descriptions[i].subpackage == subpackage)
break;
if (i < dist->num_descriptions) {
snprintf(filename, sizeof(filename), "%s/%s/install", directory, prodfull);
make_directory(filename, 0755, 0, 0);
strlcat(filename, "/slack-desc", sizeof(filename));
if ((fp = fopen(filename, "w")) == NULL) {
fprintf(stderr,
"ERROR: Couldn't create Slackware description file \"%s\": %s\n",
filename, strerror(errno));
return (1);
}
fprintf(fp, "%s: %s\n%s:\n", prodfull, dist->product, prodfull);
for (; i < dist->num_descriptions; i++)
if (dist->descriptions[i].subpackage == subpackage)
fprintf(fp, "%s: %s\n", prodfull, dist->descriptions[i].description);
fprintf(fp, "%s:\n", prodfull);
fprintf(fp, "%s: (Vendor: %s, Packager: %s)\n", prodfull, dist->vendor,
dist->packager);
fprintf(fp, "%s:\n", prodfull);
fclose(fp);
}
for (i = 0, c = dist->commands; i < dist->num_commands; i++, c++)
if (c->subpackage == subpackage)
break;
if (i < dist->num_commands) {
snprintf(filename, sizeof(filename), "%s/%s/install", directory, prodfull);
make_directory(filename, 0755, 0, 0);
strlcat(filename, "/doinst.sh", sizeof(filename));
if (!(fp = fopen(filename, "w"))) {
fprintf(stderr, "ERROR: Couldn't create post install script \"%s\": %s\n",
filename, strerror(errno));
return (1);
}
fputs("#!/bin/sh\n", fp);
for (i = 0, c = dist->commands; i < dist->num_commands; 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 Slackware packager.\n",
stderr);
break;
case COMMAND_POST_INSTALL:
fprintf(fp, "%s\n", c->command);
break;
case COMMAND_PRE_REMOVE:
fputs("WARNING: Package contains pre-removal commands which are not "
"supported\n"
" by the Slackware packager.\n",
stderr);
break;
case COMMAND_POST_REMOVE:
fputs("WARNING: Package contains post-removal commands which are not "
"supported\n"
" by the Slackware packager.\n",
stderr);
break;
}
}
fclose(fp);
}
/*
* Remove any existing package of the same name, then create the
* package...
*/
snprintf(filename, sizeof(filename), "%s/%s", directory, pkgname);
unlink(filename);
if (Verbosity)
puts("Building Slackware package...");
snprintf(filename, sizeof(filename), "%s/%s", directory, prodfull);
if (run_command(filename, "makepkg --linkadd y --chown n ../%s", pkgname))
return (1);
/*
* Remove temporary files...
*/
if (!KeepFiles) {
if (Verbosity)
puts("Removing temporary distribution files...");
unlink_directory(filename);
}
return (0);
}