-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtil.c
More file actions
executable file
·277 lines (232 loc) · 4.89 KB
/
Util.c
File metadata and controls
executable file
·277 lines (232 loc) · 4.89 KB
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
#include <stdio.h>
#include <fcntl.h>
/*
* @Author: Hannes de Waal (c) 2006
*
* @Description:
* Logger module
*
* @log:
* 18 May 2004 - version 1.0
*
*
*/
char *
parse_profile (char *file, char *find_param)
{
FILE *in;
char line[200];
char *delimiters = "\n";
char *token = NULL;
char *sp = NULL;
char *spt = NULL;
char *param = NULL;
char *value = NULL;
char val[200] = "";
int found = 0;
if (file == NULL)
{
loge ("no profile specified %s.", file);
return NULL;
}
if ((in = fopen (file, "r")) == NULL)
{
loge ("Can't open profile [%s]", file);
return NULL;
}
/* Read each line one at a time */
while (!feof (in))
{
/* Get one line */
fgets (line, 80, in);
if (!feof (in))
{
/* Break the line up into words */
token = strtok (line, delimiters);
while (token != NULL && found == 0)
{
// puts(token);
if (token[0] != '#')
{ /* no comment */
spt = sp = (char *) strstr (token, "=");
if (sp != NULL)
{ /* delimiter */
sp[0] = '\0';
param = token;
while (*token != '\0')
{
token++;
if (isspace (*token))
*token = '\0';
}
//trim_trailing_ws(token,strlen(token));
value = ++sp;
while (isspace (*value))
value++;
if (strstr (find_param, param) != NULL)
{
strcpy ((char *) &val, value);
found++;
}
//printf("param >%s<<>>%s<\n",param,value);
}
}
/* Get the next word */
token = strtok (NULL, delimiters);
}
}
}
fclose (in);
sp = NULL;
sp = (char *) &val;
if (found != 1)
{
logd ("Can't find parameter: %s in [%s]", find_param, file);
}
return (found == 1) ? sp : NULL;
}
/*
* demonize and lockfile ops start here
*/
int
daemonize (const char *lockfile)
{
pid_t pid;
int fd = 0;
if (lockfile)
{
lockfile = get_absolute_filename (lockfile);
if (!lockfile)
return -1;
fd = lockfile_get_exclusive (lockfile);
if (fd < 0)
return -1;
}
pid = fork ();
if (pid < 0)
{
loge ("fork failed.");
return -1;
}
else if (pid)
{
if (lockfile)
{
lockfile_write_pid (fd, pid);
}
logi ("Starting as daemon: PID is %d.", (int) pid);
_exit (0);
}
setsid ();
//chdir("/");
umask (022);
fclose (stdin);
fclose (stdout);
fclose (stderr);
/*
* We want the lock to be unlinked upon normal exit.
if ( lockfile )
atexit(lockfile_unlink);
*/
return 0;
}
static int
lockfile_write_pid (int fd, pid_t pid)
{
int ret;
char buf[50];
/*
* Reset file size to 0.
*/
ret = ftruncate (fd, 0);
if (ret < 0)
{
fprintf (stderr, "couldn't truncate lockfile to 0 byte.");
return -1;
}
snprintf (buf, sizeof (buf), "%d\n", (int) pid);
ret = write (fd, buf, strlen (buf));
if (ret < 0)
{
fprintf (stderr, "couldn't write PID to lockfile.");
return -1;
}
return 0;
}
int
lockfile_unlink (void)
{
int ret;
ret = unlink (slockfile);
if (ret < 0)
loge ("couldn't delete %s.", slockfile);
}
static const char *
get_absolute_filename (const char *lockfile)
{
if (*lockfile == '/')
snprintf (slockfile, sizeof (slockfile), "%s", lockfile);
else
{
char dir[MAXLINE];
/*
* if lockfile is a relative path,
* deletion on exit() will not work because of the chdir("/") call.
* That's why we want to conver it to an absolute path.
*/
if (!getcwd (dir, sizeof (dir)))
{
loge ("couldn't get current working directory.");
return NULL;
}
snprintf (slockfile, sizeof (slockfile), "%s/%s", dir, lockfile);
}
return slockfile;
}
static int
lockfile_get_exclusive (const char *lockfile)
{
int ret, fd;
struct flock lock;
fd = open (lockfile, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
if (fd < 0)
{
fprintf (stderr, "couldn't open %s for writing.\n", lockfile);
return -1;
}
lock.l_type = F_WRLCK; /* write lock */
lock.l_start = 0; /* from offset 0 */
lock.l_whence = SEEK_SET; /* at the beggining of the file */
lock.l_len = 0; /* until EOF */
lock.l_pid = getpid (); /* our PID */
ret = fcntl (fd, F_SETLK, &lock);
if (ret == -1)
{
if (errno == EACCES || errno == EAGAIN)
fprintf (stderr, "program is already running.\n");
// logi("program is already running.");
else
fprintf (stderr, "couldn't set write lock.\n");
close (fd);
return -1;
}
// fprintf(stdout,"got lock");
/*
* lock is now held until program exit.
*/
return fd;
}
/*
int main(char *argc, char **argv)
{
int i;
char p = { ":"};
char buff[256];
//if (argv[1] == NULL) exit(0);
//parse(argv[1]);
char *test_proj[] = { "loptT00D00" , "loptT00DB" ,"loptT00DVEBMGS00" };
for (i=0;i<3;i++){
get_lhost(test_proj[i],p,&buff);
}
}
*/