-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.c
501 lines (409 loc) · 9.56 KB
/
util.c
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/*
* util.c
*
* Created on: 2014-1-23
* Author: Luo Guochun
*/
#include "util.h"
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <fcntl.h>
#include <signal.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
enum {
MAX_PATH_LEN = 256,
SEC_1900_1970 = 2208988800UL,
};
sigfunc* set_signal(int signo, sigfunc* func, int interupt)
{
struct sigaction act, oact;
act.sa_handler = func;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
if (!interupt){
act.sa_flags |= SA_RESTART;
}
if (sigaction(signo, &act, &oact) < 0) {
return SIG_ERR ;
}
return oact.sa_handler;
}
int make_daemon()
{
if (fork() > 0) {
exit(0);
}
setsid();
if (fork() > 0) {
exit(0);
}
return 0;
}
int is_prog_runas_root()
{
if(getuid() == 0 || geteuid() == 0){
return 1;
}
return 0;
}
int is_prog_running(const char* name)
{
if(name == NULL || name[0] == 0) return -1;
char file[MAX_PATH_LEN] = { 0 };
snprintf(file, MAX_PATH_LEN - 1, "/tmp/%s.running", name);
umask(0111);
int fd = open(file, O_RDWR | O_CREAT | O_SYNC, 0666);
if (fd < 0) {
return -1;
}
struct flock lck = {0};
lck.l_type = F_WRLCK;
lck.l_whence = SEEK_SET;
lck.l_start = sizeof(pid_t);
int len = 0;
pid_t pid = -1;
if(fcntl(fd, F_SETLK, &lck) < 0){
len = read(fd, &pid, sizeof(pid_t));
if(len != sizeof(pid_t)) {
printf("read pid failed. error: %s\n", strerror(errno));
close(fd);
return -1;
}
close(fd);
return 1;
}
pid = getpid();
lseek(fd, 0, SEEK_SET);
len = write(fd, &pid, sizeof(pid_t));
if(len != sizeof(pid_t)){
lck.l_type = F_UNLCK;
fcntl(fd, F_SETLK, &lck);
close(fd);
return -1;
}
return 0;
}
int runas(const char* user)
{
struct passwd* passwd = getpwuid(getuid());
if(strcmp(passwd->pw_name, user) == 0) {
return 0;
}
passwd = getpwnam(user);
if(passwd == NULL) {
return -1;
}
/* struct group* group = getgrnam(grp);
if(group == NULL) {
return -1;
}*/
if(setuid(passwd->pw_uid) != 0) {
fprintf(stderr, "setuid failed,: %s\n", strerror(errno));
return -1;
}
/* if(setgid(group->gr_gid) != 0){
fprintf(stderr, "setgid failed: %s\n", strerror(errno));
return -1;
}*/
return 0;
}
int write_pid_file(const char* file)
{
FILE* fp = fopen(file, "w");
if(fp == NULL){
return -1;
}
fprintf(fp, "%d", getpid());
fclose(fp);
return 0;
}
int read_pid_file(pid_t* pid, const char* file)
{
FILE* fp = fopen(file, "r");
if(fp == NULL){
return -1;
}
fscanf(fp, "%d", pid);
fclose(fp);
return 0;
}
time_t get_1970_sec()
{
return time(NULL);
}
time_t get_1970_usec()
{
struct timeval tv = { 0 };
gettimeofday(&tv, NULL);
return tv.tv_sec * 1000000 + tv.tv_usec;
}
time_t get_1970_ms()
{
struct timeval tv = { 0 };
gettimeofday(&tv, NULL);
return tv.tv_sec * 1000 + tv.tv_usec / 1000 ;
}
time_t get_utc_sec()
{
return get_1970_sec() + SEC_1900_1970;
}
time_t get_utc_usec()
{
return get_1970_usec() + SEC_1900_1970 * 1000000;
}
time_t get_utc_ms()
{
return get_1970_ms() + SEC_1900_1970 * 1000;
}
time_t get_1970_sec_0_am()
{
time_t now = get_1970_sec();
struct tm now_tm = {0};
localtime_r(&now, &now_tm);
now_tm.tm_hour = 0;
now_tm.tm_min = 0;
now_tm.tm_sec = 0;
return mktime(&now_tm) + SEC_1900_1970;
}
time_t get_1970_usec_0_am()
{
return get_1970_sec_0_am() * 1000000;
}
time_t get_1970_ms_0_am()
{
return get_1970_sec_0_am() * 1000;
}
int sec_1970_to_datetime(time_t sec, const char* fmt, char* datetime, int len)
{
if(datetime == NULL)
return -1;
memset(datetime, 0, len);
struct tm rst;
localtime_r(&sec, &rst);
snprintf(datetime, len, fmt, rst.tm_year + 1900, rst.tm_mon + 1,
rst.tm_mday, rst.tm_hour, rst.tm_min, rst.tm_sec);
return 0;
}
int sec_1970_to_date(time_t sec, const char* fmt, char* time, int len)
{
if(time == NULL) return -1;
memset(time, 0, len);
struct tm rst;
localtime_r(&sec, &rst);
snprintf(time, len, fmt, rst.tm_year + 1900, rst.tm_mon + 1,
rst.tm_mday);
return 0;
}
int sec_1970_to_time(time_t sec, const char* fmt, char* time, int len)
{
if(time == NULL) return -1;
memset(time, 0, len);
struct tm rst;
localtime_r(&sec, &rst);
snprintf(time, len, fmt, rst.tm_hour, rst.tm_min, rst.tm_sec);
return 0;
}
int sec_1970_to_numeric(time_t s,
int* year, int* mon, int* day,
int* hour, int* min, int* sec)
{
if(!year || !mon || !day ||
!hour || !min || !sec){
return -1;
}
struct tm rst;
localtime_r(&s, &rst);
*year = rst.tm_year + 1900;
*mon = rst.tm_mon + 1;
*day = rst.tm_mday;
*hour = rst.tm_hour;
*min = rst.tm_min;
*sec = rst.tm_sec;
return 0;
}
/*
* Routine to see if a text string is matched by a wildcard pattern.
* Returns 1 if the text is matched, or 0 if it is not matched
* or if the pattern is invalid.
* * matches zero or more characters
* ? matches a single character
* [abc] matches 'a', 'b' or 'c'
* \c quotes character c
* Adapted from code written by Ingo Wilken.
*/
int match(const char* text, const char* pattern)
{
if (NULL == text || NULL == pattern) {
return 0;
}
const char * retryPat;
const char * retryText;
int ch;
int found;
retryPat = NULL;
retryText = NULL;
while (*text || *pattern) {
ch = *pattern++;
switch (ch) {
case '*':
retryPat = pattern;
retryText = text;
break;
case '[':
found = 0;
while ((ch = *pattern++) != ']') {
if (ch == '\\')
ch = *pattern++;
if (ch == '\0')
return 0;
if (*text == ch)
found = 1;
}
if (!found) {
pattern = retryPat;
text = ++retryText;
}
if (text) {
if (*text++ == '\0')
return 0;
}
break;
case '?':
if (*text++ == '\0')
return 0;
break;
case '\\':
ch = *pattern++;
if (ch == '\0')
return 0;
if (*text == ch) {
if (*text)
text++;
break;
}
if (*text) {
pattern = retryPat;
text = ++retryText;
break;
}
return 0;
default:
if (*text == ch) {
if (*text)
text++;
break;
}
if (*text) {
pattern = retryPat;
text = ++retryText;
break;
}
return 0;
}
if (pattern == NULL)
return 0;
}
return 1;
}
int split(const char* text, char needle, char** dest, int size, int num)
{
if (!text || text[0] == 0 || !dest || size <= 0 || num <= 0) {
return -1;
}
const char* orig = text;
const char* tmp = text;
int cur_num = 0;
while ((tmp = strchr(tmp, needle)) != NULL) {
int len = tmp - orig;
if (len >= size) {
return -1;
}
if (cur_num >= num) {
return -1;
}
memcpy((char*)dest + size*cur_num, orig, len);
*((char*)dest + size*cur_num + len) = 0;
cur_num++;
tmp++;
orig = tmp;
}
if(orig != NULL){
strcpy((char*)dest + size*cur_num, orig);
cur_num ++ ;
}
if(cur_num == 0){
strcpy((char*)dest, text);
cur_num++;
}
return cur_num;
}
const char* trim_left(const char* text, const char* needle, char* dest, int size)
{
if(!text || text[0] == 0 ||
!needle || needle[0] == 0 ||
!dest || size <= 0){
return NULL;
}
memset(dest, 0, size);
int count = 0;
int match = 0;
while (*(text + count) != 0) {
if (NULL != strchr(needle, *(text + count))) {
++match;
} else {
break;
}
++count;
}
count = strlen(text + match);
if (count >= size) {
return NULL;
}
strncpy(dest, text + match, size);
return dest;
}
const char* trim_right(const char* text, const char* needle, char* dest, int size)
{
if(!text || text[0] == 0 ||
!needle || needle[0] == 0 ||
!dest || size <= 0){
return NULL;
}
memset(dest, 0, size);
int len = strlen(text);
const char *p = text + len - 1;
while (p >= text) {
if (strchr(needle, *p) != NULL) {
--p;
--len;
} else {
break;
}
}
if(len >= size) {
return NULL;
}
strncpy(dest, text, len);
return dest;
}
const char* trim(const char* text, const char* needle, char* dest, int size)
{
char tmp[size];
memset(tmp, 0, size);
if(trim_left(text, needle, tmp, size) == NULL) {
return NULL;
}
if(trim_right(tmp, needle, dest, size) == NULL) {
return NULL;
}
return dest;
}