File: msvc.c

package info (click to toggle)
minit 0.10-5
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 224 kB
  • ctags: 139
  • sloc: ansic: 1,655; makefile: 129; sh: 49; python: 33
file content (339 lines) | stat: -rw-r--r-- 7,490 bytes parent folder | download
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
#include <fcntl.h>
#include <sys/file.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include "str.h"
#include "fmt.h"
#include "buffer.h"
#define NOVARS
#include "minit.h"
#include <errmsg.h>
#include <errno.h>

static int infd,outfd;

static char buf[1500];

void addservice(char* service) {
  char* x;
  if (str_start(service,MINITROOT "/"))
    service+=sizeof(MINITROOT "/") -1;
  x=service+str_len(service)-1;
  while (x>service && *x=='/') { *x=0; --x; }
  strncpy(buf+1,service,1400);
  buf[1400]=0;
}

int addreadwrite(char* service) {
  addservice(service);
  write(infd,buf,str_len(buf));
  return read(outfd,buf,1500);
}

/* return PID, 0 if error */
pid_t __readpid(char *service) {
  int len;
  buf[0]='p';
  len=addreadwrite(service);
  if (len<0) return 0;
  buf[len]=0;
  return atoi(buf);
}

/* return nonzero if error */
int respawn(char *service,int yesno) {
  int len;
  buf[0]=yesno?'R':'r';
  len=addreadwrite(service);
  return (len!=1 || buf[0]=='0');
}

/* return nonzero if error */
int setpid(char *service, pid_t pid) {
  char *tmp;
  int len;
  buf[0]='P';
  addservice(service);
  tmp=buf+str_len(buf)+1;
  tmp[fmt_ulong(tmp,pid)]=0;
  write(infd,buf,str_len(buf)+str_len(tmp)+2);
  len=read(outfd,buf,1500);
  return (len!=1 || buf[0]=='0');
}

/* return nonzero if error */
int check_remove(char *service) {
  int len;
  buf[0]='C';
  len=addreadwrite(service);
  return (len!=1 || buf[0]=='0');
}

/* return nonzero if error */
int startservice(char *service) {
  int len;
  buf[0]='s';
  len=addreadwrite(service);
  return (len!=1 || buf[0]=='0');
}

/* return uptime, 0 if error */
unsigned long uptime(char *service) {
  int len;
  buf[0]='u';
  len=addreadwrite(service);
  if (len<0) return 0;
  buf[len]=0;
  return atoi(buf);
}

void dumphistory() {
  char tmp[16384];
  int i,j;
  char first,last;
  first=1; last='x';
  write(infd,"h",1);
  for (;;) {
    int prev,done;
    j=read(outfd,tmp,sizeof(tmp));
    if (j<1) break;
    done=i=0;
    if (first) {
      if (tmp[0]=='0') {
	carp("minit compiled without history support.");
	return;
      }
      i+=2;
    } else {
      if (!tmp[0] && last=='\n') break;
    }
    prev=i;
    for (; i<j; ++i)
      if (!tmp[i]) {
	tmp[i]=done?0:'\n';
	if (i<j && !tmp[i+1]) { done=1; --j; }
      }
    if (first)
      write(1,tmp+2,j-2);
    else
      write(1,tmp,j);
    if (done) break;
    last=tmp[j-1];
    first=0;
  }
}

void dumpdependencies(char* service) {
  char tmp[16384];
  int i,j;
  char first,last;
  buf[0]='d';
  addservice(service);
  write(infd,buf,str_len(buf));
  first=1; last='x';
  for (;;) {
    int prev,done;
    j=read(outfd,tmp,sizeof(tmp));
    if (j<1) break;
    done=i=0;
    if (first) {
      if (tmp[0]=='0') {
	carp(service,": no such service.");
	return;
      }
      i+=2;
    } else {
      if (!tmp[0] && last=='\n') break;
    }
    prev=i;
    for (; i<j; ++i)
      if (!tmp[i]) {
	tmp[i]=done?0:'\n';
	if (i<j && !tmp[i+1]) { done=1; --j; }
      }
    if (first)
      write(1,tmp+2,j-2);
    else
      write(1,tmp,j);
    if (done) break;
    last=tmp[j-1];
    first=0;
  }
}

int main(int argc,char *argv[]) {
  if (argc<2) {
    msg(
	"usage: msvc -[uodpchaitkogC] service\n"
	"       msvc -Ppid service\n"
	" -u\tup; start service with respawn\n"
	" -o\tonce; start service without respawn\n"
	" -d\tdown; disable respawn, stop service\n"
	" -p\tpause; send SIGSTOP\n"
	" -c\tcontinue; send SIGCONT\n"
	" -h\thangup; send SIGHUP\n"
	" -a\talarm; send SIGALRM\n"
	" -i\tintr; send SIGINT\n"
	" -t\tterminate; send SIGTERM\n"
	" -k\tkill; send SIGKILL\n"
	" -g\tget; output just the PID\n"
	" -Ppid\tset PID of service (for pidfilehack)\n"
	" -D service\tprint services started as dependency\n"
	" -H\tprint last n respawned services\n"
	" -C\tClear; remove service form active list\n");
    return 0;
  }
  errmsg_iam("msvc");
  infd=open(MINITFIFOS "/in",O_WRONLY);
  outfd=open(MINITFIFOS "/out",O_RDONLY);
  if (infd>=0) {
    while (lockf(infd,F_LOCK,1)) {
      carp("could not acquire lock!");
      sleep(1);
    }
    if (argc==2 && argv[1][1]!='H') {
      pid_t pid=__readpid(argv[1]);
      if (buf[0]!='0') {
	unsigned long len;
	unsigned long ut=uptime(argv[1]);

	if (isatty(1)) {
	  char tmp[FMT_ULONG+20];
	  char tmp2[FMT_ULONG];
	  char* what;

	  if (pid==0) what="down "; else
	  if (pid==1) what="finished "; else {
	    len=fmt_str(tmp,"up (pid ");
	    len+=fmt_ulong(tmp+len,pid);
	    tmp[len+fmt_str(tmp+len,") ")]=0;
	    what=tmp;
	  }
	  tmp2[fmt_ulong(tmp2,ut)]=0;
	  msg(argv[1],": ",what,tmp2," seconds");
	} else {
	  char tmp[FMT_ULONG*2+5];
	  len=fmt_ulong(tmp,pid);
	  tmp[len]=' '; ++len;
	  len+=fmt_ulong(tmp+len,ut);
	  tmp[len]='\n';
	  write(1,tmp,len+1);
	}

	if (pid==0) return 2; else if (pid==1) return 3; else return 0;
      } else
	carp(argv[1],": no such service.");
      return 1;
    } else {
      int i;
      int ret=0;
      int sig=0;
      pid_t pid;
      if (argv[1][0]=='-') {
	switch (argv[1][1]) {
	case 'g':
	  for (i=2; i<argc; ++i) {
	    pid=__readpid(argv[i]);
	    if (pid<2) {
	      carp(argv[i],pid==1?": service terminated":": no such service");
	      ret=1;
	    } else {
	      char tmp[FMT_ULONG];
	      int i;
	      tmp[i=fmt_ulong(tmp,pid)]='\n';
	      write(1,tmp,i+1);
	    }
	  }
	  break;
	case 'p': sig=SIGSTOP; goto dokill; break;
	case 'c': sig=SIGCONT; goto dokill; break;
	case 'h': sig=SIGHUP; goto dokill; break;
	case 'a': sig=SIGALRM; goto dokill; break;
	case 'i': sig=SIGINT; goto dokill; break;
	case 't': sig=SIGTERM; goto dokill; break;
	case 'k': sig=SIGKILL; goto dokill; break;
	case 'o':
	  for (i=2; i<argc; ++i)
	    if (startservice(argv[i]) || respawn(argv[i],0)) {
	      carp("Could not start ",argv[i]);
	      ret=1;
	    }
	  break;
	case 'd':
	  for (i=2; i<argc; ++i) {
	    pid=__readpid(argv[i]);
	    if (pid==0) {
	      carp(argv[i],": no such service");
	      ret=1;
	    } else if (pid<=1) {
	      ret=1;
	    } else
	      respawn(argv[i],0) || kill(pid,SIGTERM) || kill(pid,SIGCONT);
	  }
	  break;
	case 'u':
	  for (i=2; i<argc; ++i)
	    if (startservice(argv[i]) || respawn(argv[i],1)) {
	      carp("Could not start ",argv[i]);
	      ret=1;
	    }
	  break;
	case 'C':
	  for (i=2; i<argc; ++i)
	    if (check_remove(argv[i])) {
	      carp(argv[i]," could not be cleared");
	      ret=1;
	    }
	  break;
	case 'P':
	  pid=atoi(argv[1]+2);
	  if (pid>1)
	    if (setpid(argv[2],pid)) {
	      carp("Could not set PID of service ",argv[2]);
	      ret=1;
	    }
	  break;
	case 'H':
	  dumphistory();
	  break;
	case 'D':
	  dumpdependencies(argv[2]);
	  break;
	}
      }
      return ret;
dokill:
      for (i=2; i<argc; i++) {
	pid=__readpid(argv[i]);
	if (!pid) {
	  carp(argv[i],": no such service");
	  ret=1;
	} else if (pid==1) {
	  carp(argv[i],": service not running");
	  ret=1;
	} else if (kill(pid,sig)) {
	  char tmp[FMT_ULONG];
	  char tmp2[FMT_ULONG];
	  char* s;
	  switch (errno) {
	    case EINVAL: s="invalid signal"; break;
	    case EPERM: s="permission denied"; break;
	    case ESRCH: s="no such pid"; break;
	    default: s="unknown error";
	  }
	  tmp[fmt_ulong(tmp,sig)]=0;
	  tmp2[fmt_ulong(tmp2,pid)]=0;
	  carp(argv[i],": could not send signal ",tmp," to PID ",tmp2,": ",s);
	  ret=1;
	}
      }
      return ret;
    }
  } else {
    carp("minit: could not open " MINITFIFOS "/in or " MINITFIFOS "/out");
    return 1;
  }
}