ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/util.C
Revision: 1.17
Committed: Fri Mar 18 01:53:05 2005 UTC (19 years, 2 months ago) by pcg
Content type: text/plain
Branch: MAIN
Changes since 1.16: +0 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 /*
2     util.C -- process management and other utility functions
3 pcg 1.16 Copyright (C) 2003-2005 Marc Lehmann <gvpe@schmorp.de>
4 pcg 1.1
5 pcg 1.3 Some of these are taken from tinc, see the AUTHORS file.
6 pcg 1.1
7 pcg 1.16 This file is part of GVPE.
8    
9     GVPE is free software; you can redistribute it and/or modify
10 pcg 1.1 it under the terms of the GNU General Public License as published by
11     the Free Software Foundation; either version 2 of the License, or
12     (at your option) any later version.
13    
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17     GNU General Public License for more details.
18    
19     You should have received a copy of the GNU General Public License
20 pcg 1.16 along with gvpe; if not, write to the Free Software
21 pcg 1.1 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22     */
23    
24     #include "config.h"
25    
26     #include <cstdio>
27 pcg 1.12 #include <cstdlib>
28 pcg 1.1 #include <cstring>
29    
30     #include <errno.h>
31     #include <signal.h>
32     #include <sys/types.h>
33 pcg 1.4 #include <sys/wait.h>
34 pcg 1.1 #include <unistd.h>
35     #include <time.h>
36    
37 pcg 1.8 #include "netcompat.h"
38 pcg 1.1
39     #include "pidfile.h"
40     #include "dropin.h"
41    
42     #include "global.h"
43     #include "conf.h"
44 pcg 1.5 #include "util.h"
45 pcg 1.1 #include "slog.h"
46    
47     int
48     write_pidfile (void)
49     {
50     int pid;
51    
52 pcg 1.13 pid = check_pid (conf.pidfilename);
53 pcg 1.1
54     if (pid)
55     {
56 pcg 1.15 fprintf (stderr, _("A gvpe daemon is already running with pid %d.\n"), pid);
57 pcg 1.1 return 1;
58     }
59    
60     /* if it's locked, write-protected, or whatever */
61 pcg 1.13 if (!write_pid (conf.pidfilename))
62 pcg 1.1 return 1;
63    
64     return 0;
65     }
66    
67     int
68     kill_other (int signal)
69     {
70     int pid;
71    
72 pcg 1.13 pid = read_pid (conf.pidfilename);
73 pcg 1.1
74     if (!pid)
75     {
76 pcg 1.15 fprintf (stderr, _("No other gvpe daemon is running.\n"));
77 pcg 1.1 return 1;
78     }
79    
80     errno = 0; /* No error, sometimes errno is only changed on error */
81    
82     /* ESRCH is returned when no process with that pid is found */
83     if (kill (pid, signal) && errno == ESRCH)
84     {
85 pcg 1.15 fprintf (stderr, _("The gvpe daemon is no longer running. "));
86 pcg 1.1
87     fprintf (stderr, _("Removing stale lock file.\n"));
88 pcg 1.13 remove_pid (conf.pidfilename);
89 pcg 1.1 }
90    
91     return 0;
92     }
93    
94     int
95     detach (int do_detach)
96     {
97     /* First check if we can open a fresh new pidfile */
98    
99     if (write_pidfile ())
100     return -1;
101    
102     /* If we succeeded in doing that, detach */
103    
104     log_to (0);
105    
106     if (do_detach)
107     {
108     if (daemon (0, 0) < 0)
109     {
110     log_to (LOGTO_SYSLOG | LOGTO_STDERR);
111    
112     slog (L_ERR, _("couldn't detach from terminal: %s"), strerror (errno));
113     return -1;
114     }
115    
116     /* Now UPDATE the pid in the pidfile, because we changed it... */
117    
118 pcg 1.13 if (!write_pid (conf.pidfilename))
119 pcg 1.1 return -1;
120    
121     log_to (LOGTO_SYSLOG);
122     }
123     else
124     log_to (LOGTO_SYSLOG | LOGTO_STDERR);
125    
126 pcg 1.15 slog (L_INFO, _("gvpe daemon %s (%s %s) starting"), VERSION, __DATE__, __TIME__);
127 pcg 1.1
128     return 0;
129     }
130    
131 pcg 1.4 void run_script (const run_script_cb &cb, bool wait)
132     {
133     int pid;
134    
135     if ((pid = fork ()) == 0)
136     {
137     char *filename;
138 pcg 1.6 asprintf (&filename, "%s/%s", confbase, cb());
139 pcg 1.4 execl (filename, filename, (char *) 0);
140 pcg 1.12 exit (126);
141 pcg 1.4 }
142     else if (pid > 0)
143     {
144     if (wait)
145     {
146     waitpid (pid, 0, 0);
147     /* TODO: check status */
148     }
149     }
150     }
151 pcg 1.7
152     #if ENABLE_HTTP_PROXY
153     // works like strdup
154     u8 *
155     base64_encode (const u8 *data, unsigned int len)
156     {
157     const static char base64[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
158    
159     unsigned int t, i;
160     const u8 *end = data + len;
161     u8 *res = new u8 [4 * ((len + 2) / 3) + 1];
162     u8 *out = res;
163    
164     while (data <= end - 3)
165     {
166     t = (((data[0] << 8) | data[1]) << 8) | data[2];
167     data += 3;
168    
169     *out++ = base64[(t >> 18) & 0x3f];
170     *out++ = base64[(t >> 12) & 0x3f];
171     *out++ = base64[(t >> 6) & 0x3f];
172     *out++ = base64[(t ) & 0x3f];
173     }
174    
175     for (t = 0, i = 0; data < end; i++)
176     t = (t << 8) | *data++;
177    
178     switch (i)
179     {
180     case 2:
181     *out++ = base64[(t >> 10) & 0x3f];
182     *out++ = base64[(t >> 4) & 0x3f];
183     *out++ = base64[(t << 2) & 0x3f];
184     *out++ = '=';
185     break;
186     case 1:
187     *out++ = base64[(t >> 2) & 0x3f];
188     *out++ = base64[(t << 4) & 0x3f];
189     *out++ = '=';
190     *out++ = '=';
191     break;
192     }
193    
194     *out++ = 0;
195    
196     return res;
197     }
198     #endif
199    
200 pcg 1.10 void
201     id2mac (unsigned int id, void *m)
202     {
203     mac &p = *(mac *)m;
204    
205     if (id)
206     {
207     p[0] = 0xfe;
208     p[1] = 0xfd;
209     p[2] = 0x80;
210     p[3] = 0x00;
211     p[4] = id >> 8;
212     p[5] = id;
213     }
214     else
215     {
216     p[0] = 0xff;
217     p[1] = 0xff;
218     p[2] = 0xff;
219     p[3] = 0xff;
220     p[4] = 0xff;
221     p[5] = 0xff;
222     }
223     }
224