Annotation of freem/src/fma_jobs.c, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
1.1 snw 3: * fmadm - jobs
4: *
5: *
1.2 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.3 ! snw 8: * Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1 snw 9: *
10: *
11: * This file is part of FreeM.
12: *
13: * FreeM is free software: you can redistribute it and/or modify
14: * it under the terms of the GNU Affero Public License as published by
15: * the Free Software Foundation, either version 3 of the License, or
16: * (at your option) any later version.
17: *
18: * FreeM is distributed in the hope that it will be useful,
19: * but WITHOUT ANY WARRANTY; without even the implied warranty of
20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: * GNU Affero Public License for more details.
22: *
23: * You should have received a copy of the GNU Affero Public License
24: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: *
1.3 ! snw 26: * $Log$
! 27: *
! 28: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
! 29: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 30: **/
31:
32: #include <stdio.h>
33: #include <stdlib.h>
34: #include <string.h>
35: #include <dirent.h>
36: #include <stdlib.h>
37: #include <time.h>
38: #include <unistd.h>
39: #include <sys/types.h>
40: #include <sys/stat.h>
41: #include <ctype.h>
42:
43: #include "fmadm.h"
44: #include "freem.h"
45: #include "jobtab.h"
46:
47: void get_job_property (char *tbuf, int length, long jobpid, char *property);
48:
49: int fma_jobs_list (int optc, char **opts)
50: {
51: printf ("\nFreeM Job Listing\n");
52: printf ( "-----------------\n\n");
53:
54: job_dump ();
55:
56: return 0;
57: }
58:
59: int fma_jobs_remove (int optc, char **opts)
60: {
61: int i;
62: pid_t job_pid;
63:
64: for (i = fma_base_opt; i < optc; i++) {
65:
66: job_pid = atol (opts[i]);
67:
68: kill (job_pid, SIGTERM);
69:
70: }
71:
72: return 0;
73: }
74:
75: int fma_jobs_examine (int optc, char **opts)
76: {
77: long pids[FMA_MAXPID];
78:
79: register int i;
80: register int j = 0;
81: register int pidct = optc - 1;
82:
83:
84: char j_uid[512];
85: char j_gid[512];
86: char j_namespace[512];
87: char j_io[512];
88: char j_tlevel[512];
89: char j_routine[512];
90:
91:
92: if (pidct < 1) {
93: fprintf (stderr, "usage: fmadm examine job <namespace> pid1 pid2 ...pidN\n");
94: return 1;
95: }
96:
97: for (i = fma_base_opt; i < optc; i++) {
98: if (i == FMA_MAXPID) break;
99: pids[j++] = atol (opts[i]);
100: }
101:
102: printf ("\nFreeM Job Examine\n");
103: printf ("-----------------\n\n");
104:
105: printf ("PIDs: ");
106:
107: for (i = 0; i < pidct; i++) {
108: printf ("%ld ", pids[i]);
109: }
110:
111: printf ("\n\n");
112:
113: /* pid uid gid namespace io tlevel routine */
114: printf ("%-8s %-8s %-8s %-12s %-30s %-10s %s\n", "PID", "UID", "GID", "NAMESPACE", "$IO", "$TLEVEL", "ROUTINE");
115: printf ("%-8s %-8s %-8s %-12s %-30s %-10s %s\n", "---", "---", "---", "---------", "---", "-------", "-------");
116:
117: for (i = 0; i < pidct; i++) {
118:
119: get_job_property (j_uid, 511, pids[i], "USER");
120: get_job_property (j_gid, 511, pids[i], "GROUP");
121: get_job_property (j_namespace, 511, pids[i], "NAMESPACE");
122: get_job_property (j_io, 511, pids[i], "$IO");
123: get_job_property (j_tlevel, 511, pids[i], "$TLEVEL");
124: get_job_property (j_routine, 511, pids[i], "ROUTINE");
125:
126: printf ("%-8ld %-8s %-8s %-12s %-30s %-10s %s\n", pids[i], j_uid, j_gid, j_namespace, j_io, j_tlevel, j_routine);
127:
128:
129: }
130:
131: printf ("\n\n - %d jobs examined\n\n", pidct);
132:
133: return 0;
134:
135: }
136:
137: void get_job_property (char *tbuf, int length, long jobpid, char *property)
138: {
139: char tkey[512];
140: int i;
141:
142: snprintf (tkey, 512 - 1, "^$JOB\202%ld\202%s\201\201\201", jobpid, property);
143: //stcnv_c2m (key);
144:
145: ssvn (get_sym, tkey, tbuf);
146:
147: for (i = 0; i < length; i++) {
148: if (tbuf[i] == '\201') tbuf[i] = '\0';
149: }
150:
151: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>