Annotation of freem/src/ssvn_zprocess.c, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
! 3: * ^$ZPROCESS ssvn
1.1 snw 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 <stdlib.h>
33: #include <stdio.h>
34: #include <string.h>
35: #include <dirent.h>
36:
37: #include "mpsdef.h"
38: #include "mref.h"
39: #include "iniconf.h"
40:
41: void ssvn_zprocess (short action, char *key, char *data)
42: {
43: freem_ref_t *ref = (freem_ref_t *) malloc (sizeof(freem_ref_t));
44:
45: char *kbuf = (char *) malloc (STRLEN * sizeof(char));
46: char *verb = (char *) malloc (STRLEN * sizeof(char));
47: char *proc_path = (char *) malloc (STRLEN * sizeof(char));
48:
49: pid_t t_pid;
50:
51: NULLPTRCHK(ref,"ssvn_zprocess");
52: NULLPTRCHK(kbuf,"ssvn_zprocess");
53: NULLPTRCHK(verb,"ssvn_zprocess");
54: NULLPTRCHK(proc_path,"ssvn_zprocess");
55:
56: mref_init (ref, MREF_RT_SSVN, "");
57: internal_to_mref (ref, key);
58:
59: if (ref->subscript_count < 2) {
60:
61: free (kbuf);
62: free (ref);
63: free (verb);
64: free (proc_path);
65:
66: merr_raise (INVREF);
67: return;
68: }
69:
70: t_pid = atol(ref->subscripts[0]);
71: snprintf (proc_path, STRLEN - 1, "/proc/%d", t_pid);
72:
73: strncpy (verb, ref->subscripts[1], STRLEN - 1);
74:
75:
76: stcpy (kbuf, key);
77:
78: switch (action) {
79:
80: case get_sym:
81:
82: if (strcmp (verb, "EXISTS") == 0) {
83:
84: if (kill (t_pid, 0) == 0) {
85: snprintf (data, STRLEN - 1, "%d\201", 1);
86: }
87: else {
88: snprintf (data, STRLEN - 1, "%d\201", 0);
89: }
90:
91: free (kbuf);
92: free (ref);
93: free (verb);
94: free (proc_path);
95:
96: merr_raise (OK);
97: return;
98:
99: }
100: else if (strcmp (verb, "ATTRIBUTE") == 0) {
101:
102: char attrib[256];
103: char fpath[4096];
104:
105: FILE *fp;
106:
107: strncpy (attrib, ref->subscripts[2], 255);
108:
109: snprintf (fpath, 4095, "/proc/%d/%s", t_pid, attrib);
110:
111: if ((fp = fopen (fpath, "r")) == NULL) {
112:
113: free (kbuf);
114: free (ref);
115: free (verb);
116: free (proc_path);
117:
118: merr_raise (INVREF);
119: return;
120: }
121:
122: fgets (data, 256, fp);
123: stcnv_c2m (data);
124:
125: fclose (fp);
126:
127: free (kbuf);
128: free (ref);
129: free (verb);
130: free (proc_path);
131:
132:
133: merr_raise (OK);
134: return;
135:
136: }
137:
138: free (kbuf);
139: free (ref);
140: free (verb);
141: free (proc_path);
142:
143: merr_raise (INVREF);
144: return;
145:
146: case set_sym:
147:
148: if (strcmp (verb, "SIGNAL") == 0) {
149:
150: int signum;
151:
152: stcnv_m2c (data);
153:
154: signum = atoi (data);
155: kill (t_pid, signum);
156:
157: stcnv_c2m (data);
158:
159: free (kbuf);
160: free (ref);
161: free (verb);
162: free (proc_path);
163:
164:
165: merr_raise (OK);
166: return;
167:
168:
169: }
170: else {
171:
172: free (kbuf);
173: free (ref);
174: free (verb);
175: free (proc_path);
176:
177: merr_raise (M29);
178: return;
179: }
180:
181: case killone:
182: case kill_sym:
183:
184: kill (t_pid, 15);
185:
186: free (kbuf);
187: free (ref);
188: free (verb);
189: free (proc_path);
190:
191: merr_raise (OK);
192: return;
193:
194: case dat:
195: case fra_order:
196: case fra_query:
197: case bigquery:
198: case getnext:
199: case m_alias:
200: case zdata:
201:
202: default:
203:
204: free (kbuf);
205: free (ref);
206: free (verb);
207: free (proc_path);
208:
209: merr_raise (INVREF);
210: return;
211:
212: }
213:
214: free (kbuf);
215: free (ref);
216: free (verb);
217: free (proc_path);
218:
219: *data = EOL;
220: return;
221: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>