summaryrefslogtreecommitdiff
path: root/chkconfig-noxinet.patch
blob: 9be6af2bf7d0f2b28fc02015bf9f81dde855a35f (plain)
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
diff -urNpa chkconfig-1.15.orig/chkconfig.8 chkconfig-1.15/chkconfig.8
--- chkconfig-1.15.orig/chkconfig.8	2021-01-21 09:19:06.000000000 +0100
+++ chkconfig-1.15/chkconfig.8	2021-05-03 16:45:40.506185842 +0200
@@ -63,16 +63,6 @@ or a stop script.  When switching runlev
 an already-started service, and will not re-stop a service that is
 not running.
 
-\fBchkconfig\fR also can manage xinetd scripts via the means
-of xinetd.d configuration files. Note that only the
-\fBon\fR, \fBoff\fR, and \fB-\-list\fR commands are supported
-for xinetd.d services.
-
-\fBchkconfig\fR supports a \fB-\-type\fR argument to limit actions to only
-a specific type of services, in the case where services of either type may
-share a name. Possible values for \fItype\fR are \fIsysv\fR
-and \fIxinetd\fR.
-
 .SH OPTIONS
 .TP
 \fB-\-level \fIlevels\fR
--- chkconfig-1.25/chkconfig.c.orig	2023-10-07 20:29:44.542142680 +0200
+++ chkconfig-1.25/chkconfig.c	2023-10-07 20:30:56.375086861 +0200
@@ -117,8 +117,6 @@ static int delService(char *name, int ty
         readServiceError(rc, name);
         return 1;
     }
-    if (s.type == TYPE_XINETD)
-        return 0;
 
     checkRoot();
 
@@ -333,8 +331,6 @@ static int addService(char *name, int ty
         return 1;
     }
 
-    if (s.type == TYPE_XINETD)
-        return 0;
     checkRoot();
 
     if (s.isLSB) {
@@ -373,9 +369,6 @@ static int overrideService(char *name, i
         return 0;
     }
 
-    if (s.type == TYPE_XINETD)
-        return 0;
-
     checkRoot();
 
     if ((s.levels == o.levels) && (s.kPriority == o.kPriority) &&
@@ -452,10 +445,6 @@ static int showServiceInfo(struct servic
     }
 
     printf("%-15s", s.name);
-    if (s.type == TYPE_XINETD) {
-        printf("\t%s\n", s.levels ? _("on") : _("off"));
-        return 0;
-    }
 
     for (i = 0; i < 7; i++) {
         printf("\t%d:%s", i, isOn(s.name, i) ? _("on") : _("off"));
@@ -469,8 +458,7 @@ static int showServiceInfoByName(char *n
     int rc;
     struct service s;
 
-    if (systemdActive() && isOverriddenBySystemd(name) &&
-        !(type & TYPE_XINETD)) {
+    if (systemdActive() && isOverriddenBySystemd(name)) {
         return forgiving ? 0 : 1;
     }
 
@@ -485,20 +473,6 @@ static int showServiceInfoByName(char *n
     return showServiceInfo(s, forgiving);
 }
 
-static int isXinetdEnabled() {
-    struct service s;
-
-    if (isOverriddenBySystemd("xinetd") && isEnabledInSystemd("xinetd"))
-        return 1;
-
-    if (readServiceInfo("xinetd", TYPE_INIT_D, &s, 0)) {
-        return 0;
-    }
-    if (s.currentLevels)
-        return 1;
-    return 0;
-}
-
 static int serviceNameCmp(const void *a, const void *b) {
     const struct service *first = a;
     const struct service *second = b;
@@ -534,56 +508,6 @@ static int listService(char *item, int t
             }
         }
     }
-
-    if (isXinetdEnabled() && type & TYPE_XINETD) {
-        struct service *s, *t;
-
-        printf("\n");
-        printf(_("xinetd based services:\n"));
-        if (!(dir = opendir(XINETDDIR))) {
-            fprintf(stderr, _("failed to open directory %s: %s\n"), XINETDDIR,
-                    strerror(err));
-            return 1;
-        }
-        numServices = 0;
-        numServicesAlloced = 10;
-        s = malloc(sizeof(*s) * numServicesAlloced);
-
-        while ((ent = readdir(dir))) {
-            const char *dn;
-
-            /* Skip any file starting with a . */
-            if (ent->d_name[0] == '.')
-                continue;
-
-            /* Skip files with known bad extensions */
-            if ((dn = strrchr(ent->d_name, '.')) != NULL &&
-                (!strcmp(dn, ".rpmsave") || !strcmp(dn, ".rpmnew") ||
-                 !strcmp(dn, ".rpmorig") || !strcmp(dn, ".swp")))
-                continue;
-
-            dn = ent->d_name + strlen(ent->d_name) - 1;
-            if (*dn == '~' || *dn == ',')
-                continue;
-
-            if (numServices == numServicesAlloced) {
-                numServicesAlloced += 10;
-                s = realloc(s, numServicesAlloced * sizeof(*s));
-            }
-            if (readXinetdServiceInfo(ent->d_name, s + numServices) != -1)
-                numServices++;
-        }
-
-        qsort(s, numServices, sizeof(*s), serviceNameCmp);
-        t = s;
-        for (i = 0; i < numServices; i++, s++) {
-            char *tmp = malloc(strlen(s->name) + 5);
-            sprintf(tmp, "%s:", s->name);
-            printf("\t%-15s\t%s\n", tmp, s->levels ? _("on") : _("off"));
-        }
-        closedir(dir);
-        free(t);
-    }
     return 0;
 }
 
@@ -646,11 +570,6 @@ int setService(char *name, int type, int
         reloadSystemd();
 
         return rc;
-    } else if (s.type == TYPE_XINETD) {
-        if (setXinetdService(s, state)) {
-            return 1;
-        }
-        system("/sbin/service xinetd reload >/dev/null 2>&1");
     }
 
     return 0;
@@ -658,8 +577,6 @@ int setService(char *name, int type, int
 
 void forwardSystemd(const char *name, int type, const char *verb) {
     int socket = 0;
-    if (type == TYPE_XINETD)
-        return;
 
     if (!systemdIsInit())
         return;
@@ -743,12 +660,10 @@ int main(int argc, const char **argv) {
         usage(progname);
 
     if (typeString) {
-        if (!strcmp(typeString, "xinetd"))
-            type = TYPE_XINETD;
-        else if (!strcmp(typeString, "sysv"))
+        if (!strcmp(typeString, "sysv"))
             type = TYPE_INIT_D;
         else {
-            fprintf(stderr, _("--type must be 'sysv' or 'xinetd'\n"));
+            fprintf(stderr, _("--type must be 'sysv'\n"));
             exit(1);
         }
     }
@@ -873,16 +788,9 @@ int main(int argc, const char **argv) {
             rc = readServiceInfo(name, type, &s, 0);
             if (rc)
                 return 1;
-            if (s.type == TYPE_XINETD) {
-                if (isXinetdEnabled())
-                    return !s.levels;
-                else
-                    return 1;
-            } else {
                 if (level == -1)
                     level = currentRunlevel();
                 return s.currentLevels & (1 << level) ? 0 : 1;
-            }
         } else if (!strcmp(state, "on")) {
             if (!noRedirectItem) {
                 forwardSystemd(name, type, "enable");
diff -urNpa chkconfig-1.15.orig/leveldb.c chkconfig-1.15/leveldb.c
--- chkconfig-1.15.orig/leveldb.c	2021-05-03 16:40:14.588185842 +0200
+++ chkconfig-1.15/leveldb.c	2021-05-03 17:50:29.728139905 +0200
@@ -204,114 +204,6 @@ int readDescription(char *start, char *b
     return 0;
 }
 
-int readXinetdServiceInfo(char *name, struct service *service) {
-    char *filename;
-    int fd;
-    struct service serv = {
-        name : NULL,
-        levels : -1,
-        kPriority : 100,
-        sPriority : -1,
-        desc : NULL,
-        startDeps : NULL,
-        stopDeps : NULL,
-        softStartDeps : NULL,
-        softStopDeps : NULL,
-        provides : NULL,
-        type : TYPE_XINETD,
-        isLSB : 0,
-        enabled : -1
-    };
-    struct stat sb;
-    char *buf = NULL, *ptr;
-    char *eng_desc = NULL, *start;
-
-    asprintf(&filename, XINETDDIR "/%s", name);
-
-    if ((fd = open(filename, O_RDONLY)) < 0)
-        goto out_err;
-    fstat(fd, &sb);
-    if (!S_ISREG(sb.st_mode))
-        goto out_err;
-    buf = malloc(sb.st_size + 1);
-    if (read(fd, buf, sb.st_size) != sb.st_size)
-        goto out_err;
-    close(fd);
-    serv.name = strdup(name);
-    buf[sb.st_size] = '\0';
-    start = buf;
-    while (buf) {
-        ptr = strchr(buf, '\n');
-        if (*buf == '#') {
-            buf++;
-            while (isspace(*buf) && buf < ptr)
-                buf++;
-            if (!strncmp(buf, "default:", 9)) {
-                buf += 8;
-                while (isspace(*buf))
-                    buf++;
-                if (!strncmp(buf + 9, "on", 2)) {
-                    serv.enabled = 1;
-                } else {
-                    serv.enabled = 0;
-                }
-            } else if (!strncmp(buf, "description:", 12)) {
-                buf += 11;
-                if (readDescription(buf, start + sb.st_size, &serv.desc,
-                                    &eng_desc)) {
-                    if (serv.desc)
-                        free(serv.desc);
-                }
-                if (!serv.desc) {
-                    if (eng_desc)
-                        serv.desc = eng_desc;
-                    else
-                        serv.desc = strdup(name);
-                } else if (eng_desc)
-                    free(eng_desc);
-            }
-            if (ptr) {
-                *ptr = '\0';
-                ptr++;
-            }
-            buf = ptr;
-            continue;
-        }
-        while (isspace(*buf) && buf < ptr)
-            buf++;
-        if (!strncmp(buf, "disable", 7)) {
-            buf = strstr(buf, "=");
-            if (buf)
-                do {
-                    buf++;
-                } while (isspace(*buf));
-
-            if (buf && strncmp(buf, "yes", 3)) {
-                serv.levels = parseLevels("0123456", 0);
-                if (serv.enabled == -1)
-                    serv.enabled = 1;
-            } else {
-                serv.levels = 0;
-                if (serv.enabled == -1)
-                    serv.enabled = 0;
-            }
-        }
-        if (ptr) {
-            *ptr = '\0';
-            ptr++;
-        }
-        buf = ptr;
-    }
-    *service = serv;
-    return 0;
-out_err:
-    if (fd >= 0)
-        close(fd);
-    free(buf);
-    free(filename);
-    return -1;
-}
-
 int readServices(struct service **services) {
     DIR *dir;
     struct dirent *ent;
@@ -365,12 +257,12 @@ int readServiceInfo(char *name, int type
     int parseret;
 
     if (!(type & TYPE_INIT_D))
-        goto try_xinetd;
+        return -1;
 
     asprintf(&filename, RUNLEVELS "/init.d/%s", name);
 
     if ((fd = open(filename, O_RDONLY)) < 0)
-        goto try_xinetd;
+        return -1;
 
     free(filename);
     parseret = parseServiceInfo(fd, name, &serv, honorHide, 0);
@@ -410,12 +302,6 @@ int readServiceInfo(char *name, int type
     free(filename);
     *service = serv;
     return 0;
-
-try_xinetd:
-    free(filename);
-    if (!(type & TYPE_XINETD))
-        return -1;
-    return readXinetdServiceInfo(name, service);
 }
 
 int readServiceDifferences(char *name, int type, struct service *service,
@@ -426,12 +312,12 @@ int readServiceDifferences(char *name, i
     int parseret;
 
     if (!(type & TYPE_INIT_D))
-        goto try_xinetd;
+        return -1;
 
     asprintf(&filename, RUNLEVELS "/init.d/%s", name);
 
     if ((fd = open(filename, O_RDONLY)) < 0) {
-        goto try_xinetd;
+        return -1;
     }
 
     free(filename);
@@ -455,12 +341,6 @@ int readServiceDifferences(char *name, i
     *service = serv;
     *service_overrides = serv_overrides;
     return 0;
-
-try_xinetd:
-    free(filename);
-    if (!(type & TYPE_XINETD))
-        return -1;
-    return readXinetdServiceInfo(name, service);
 }
 
 static struct dep *parseDeps(char *pos, char *end) {
@@ -863,68 +743,6 @@ int whatLevels(char *name) {
     return ret;
 }
 
-int setXinetdService(struct service s, int on) {
-    int oldfd, newfd;
-    char oldfname[100], newfname[100];
-    char tmpstr[50];
-    char *buf, *ptr, *tmp;
-    struct stat sb;
-    mode_t mode;
-    int r;
-
-    if (on == -1) {
-        on = s.enabled ? 1 : 0;
-    }
-    snprintf(oldfname, 100, "%s/%s", XINETDDIR, s.name);
-    if ((oldfd = open(oldfname, O_RDONLY)) == -1) {
-        return -1;
-    }
-    fstat(oldfd, &sb);
-    buf = malloc(sb.st_size + 1);
-    if (read(oldfd, buf, sb.st_size) != sb.st_size) {
-        close(oldfd);
-        free(buf);
-        return -1;
-    }
-    close(oldfd);
-    buf[sb.st_size] = '\0';
-    snprintf(newfname, 100, "%s/%s.XXXXXX", XINETDDIR, s.name);
-    mode = umask(S_IRWXG | S_IRWXO);
-    newfd = mkstemp(newfname);
-    umask(mode);
-    if (newfd == -1) {
-        free(buf);
-        return -1;
-    }
-    while (buf) {
-        tmp = buf;
-        ptr = strchr(buf, '\n');
-        if (ptr) {
-            *ptr = '\0';
-            ptr++;
-        }
-        while (isspace(*buf))
-            buf++;
-        if (strncmp(buf, "disable", 7) && strlen(buf)) {
-            write(newfd, tmp, strlen(tmp));
-            write(newfd, "\n", 1);
-            if (buf[0] == '{') {
-                snprintf(tmpstr, 50, "\tdisable\t= %s", on ? "no" : "yes");
-                write(newfd, tmpstr, strlen(tmpstr));
-                write(newfd, "\n", 1);
-            }
-        }
-        buf = ptr;
-    }
-    close(newfd);
-    unlink(oldfname);
-    r = rename(newfname, oldfname);
-    if (selinux_restore(oldfname) != 0)
-        fprintf(stderr, _("Unable to set SELinux context for %s: %s\n"),
-                oldfname, strerror(errno));
-    return (r);
-}
-
 int doSetService(struct service s, int level, int on) {
     int priority = on ? s.sPriority : s.kPriority;
     char linkname[200];
diff -urNpa chkconfig-1.15.orig/leveldb.h chkconfig-1.15/leveldb.h
--- chkconfig-1.15.orig/leveldb.h	2021-01-21 09:19:06.000000000 +0100
+++ chkconfig-1.15/leveldb.h	2021-05-03 17:47:25.388139905 +0200
@@ -17,14 +17,12 @@
 #define H_LEVELDB
 
 #define RUNLEVELS "/etc"
-#define XINETDDIR "/etc/xinetd.d"
 
 #include <glob.h>
 
 #define TYPE_INIT_D 0x1
-#define TYPE_XINETD 0x2
 #define TYPE_SYSTEMD 0x4
-#define TYPE_ANY (TYPE_INIT_D | TYPE_XINETD | TYPE_SYSTEMD)
+#define TYPE_ANY (TYPE_INIT_D | TYPE_SYSTEMD)
 
 #ifndef SYSTEMD_SERVICE_PATH
 #define SYSTEMD_SERVICE_PATH "/lib/systemd/system"
@@ -71,8 +69,6 @@ int isConfigured(char *name, int level,
 int whatLevels(char *name);
 int doSetService(struct service s, int level, int on);
 int findServiceEntries(char *name, int level, glob_t *globresptr);
-int readXinetdServiceInfo(char *name, struct service *service);
-int setXinetdService(struct service s, int on);
 int systemdIsInit();
 int systemdActive();
 int isOverriddenBySystemd(const char *service);
diff -urNpa chkconfig-1.15.orig/ntsysv.c chkconfig-1.15/ntsysv.c
--- chkconfig-1.15.orig/ntsysv.c	2021-01-21 09:19:06.000000000 +0100
+++ chkconfig-1.15/ntsysv.c	2021-05-03 17:45:56.483139905 +0200
@@ -69,19 +69,13 @@ static int servicesWindow(struct service
                 newtCompactButton(-1, count,
                                   services[i].type == TYPE_INIT_D
                                       ? "SysV initscripts"
-                                      : services[i].type == TYPE_XINETD
-                                            ? "xinetd services"
                                             : services[i].type == TYPE_SYSTEMD
                                                   ? "systemd services"
                                                   : "Unknown"));
             count++;
             last = services[i].type;
         }
-        if (services[i].type == TYPE_XINETD) {
-            checkboxes[i] =
-                newtCheckbox(-1, count, services[i].name,
-                             services[i].levels ? '*' : ' ', NULL, states + i);
-        } else if (services[i].type == TYPE_SYSTEMD) {
+        if (services[i].type == TYPE_SYSTEMD) {
             checkboxes[i] =
                 newtCheckbox(-1, count, services[i].name,
                              services[i].enabled ? '*' : ' ', NULL, states + i);
@@ -150,11 +144,7 @@ static int servicesWindow(struct service
         return 1;
 
     for (i = 0; i < numServices; i++) {
-        if (services[i].type == TYPE_XINETD) {
-            if ((services[i].enabled && states[i] != '*') ||
-                (!services[i].enabled && states[i] == '*'))
-                setXinetdService(services[i], states[i] == '*');
-        } else if (services[i].type == TYPE_SYSTEMD) {
+        if (services[i].type == TYPE_SYSTEMD) {
             char *cmd = NULL;
             int en = 0;
             if (services[i].enabled && states[i] != '*')
@@ -368,50 +358,6 @@ static int getServices(struct service **
 
     closedir(dir);
 
-    if (!stat("/usr/sbin/xinetd", &sb)) {
-        if (!(dir = opendir(XINETDDIR))) {
-            fprintf(stderr, "failed to open " XINETDDIR ": %s\n",
-                    strerror(errno));
-            return 2;
-        }
-
-        while ((ent = readdir(dir))) {
-            if (strchr(ent->d_name, '~') || strchr(ent->d_name, ',') ||
-                strchr(ent->d_name, '.'))
-                continue;
-
-            sprintf(fn, "%s/%s", XINETDDIR, ent->d_name);
-            if (stat(fn, &sb)) {
-                err = errno;
-                continue;
-            }
-            if (!S_ISREG(sb.st_mode))
-                continue;
-
-            if (numServices == numServicesAlloced) {
-                numServicesAlloced += 10;
-                services =
-                    realloc(services, numServicesAlloced * sizeof(*services));
-            }
-
-            rc = readXinetdServiceInfo(ent->d_name, services + numServices);
-
-            if (rc == -1) {
-                fprintf(stderr, _("error reading info for service %s: %s\n"),
-                        ent->d_name, strerror(errno));
-                closedir(dir);
-                return 2;
-            } else if (!rc)
-                numServices++;
-        }
-
-        if (err) {
-            fprintf(stderr, _("error reading from directory %s: %s\n"),
-                    XINETDDIR, strerror(err));
-            return 1;
-        }
-    }
-
     getSystemdServices(&services, &numServices);
 
     qsort(services, numServices, sizeof(*services), serviceNameCmp);