ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/util.C
Revision: 1.7
Committed: Mon Apr 7 01:12:56 2003 UTC (21 years, 1 month ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: VPE_0_9, VPE_1_0
Changes since 1.6: +49 -0 lines
Log Message:
*** empty log message ***

File Contents

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