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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
|
/* ply-utils.c - random useful functions and macros
*
* Copyright (C) 2007 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Written by: Ray Strode <rstrode@redhat.com>
*/
#include <config.h>
#include "ply-utils.h"
#include <assert.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/un.h>
#include <linux/fs.h>
#include <dlfcn.h>
#include "ply-logger.h"
#ifndef PLY_OPEN_FILE_DESCRIPTORS_DIR
#define PLY_OPEN_FILE_DESCRIPTORS_DIR "/proc/self/fd"
#endif
#ifndef PLY_ERRNO_STACK_SIZE
#define PLY_ERRNO_STACK_SIZE 256
#endif
#ifndef PLY_SOCKET_CONNECTION_BACKLOG
#define PLY_SOCKET_CONNECTION_BACKLOG 32
#endif
#ifndef PLY_SUPER_SECRET_LAZY_UNMOUNT_FLAG
#define PLY_SUPER_SECRET_LAZY_UNMOUNT_FLAG 2
#endif
static int errno_stack[PLY_ERRNO_STACK_SIZE];
static int errno_stack_position = 0;
bool
ply_open_unidirectional_pipe (int *sender_fd,
int *receiver_fd)
{
int pipe_fds[2];
assert (sender_fd != NULL);
assert (receiver_fd != NULL);
if (pipe (pipe_fds) < 0)
return false;
if (fcntl (pipe_fds[0], F_SETFD, O_NONBLOCK | FD_CLOEXEC) < 0)
{
ply_save_errno ();
close (pipe_fds[0]);
close (pipe_fds[1]);
ply_restore_errno ();
return false;
}
if (fcntl (pipe_fds[1], F_SETFD, O_NONBLOCK | FD_CLOEXEC) < 0)
{
ply_save_errno ();
close (pipe_fds[0]);
close (pipe_fds[1]);
ply_restore_errno ();
return false;
}
*sender_fd = pipe_fds[1];
*receiver_fd = pipe_fds[0];
return true;
}
static int
ply_open_unix_socket (void)
{
int fd;
const int should_pass_credentials = true;
fd = socket (PF_UNIX, SOCK_STREAM, 0);
if (fd < 0)
return -1;
if (fcntl (fd, F_SETFD, O_NONBLOCK | FD_CLOEXEC) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
if (setsockopt (fd, SOL_SOCKET, SO_PASSCRED,
&should_pass_credentials, sizeof (should_pass_credentials)) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
return fd;
}
static struct sockaddr *
create_unix_address_from_path (const char *path,
bool is_abstract,
size_t *address_size)
{
struct sockaddr_un *address;
assert (path != NULL && path[0] != '\0');
assert (strlen (path) < sizeof (address->sun_path));
address = calloc (1, sizeof (struct sockaddr_un));
address->sun_family = AF_UNIX;
/* a socket is marked as abstract if its path has the
* NUL byte at the beginning of the buffer instead of
* the end
*
* Note, we depend on the memory being zeroed by the calloc
* call above.
*/
if (!is_abstract)
strncpy (address->sun_path, path, sizeof (address->sun_path) - 1);
else
strncpy (address->sun_path + 1, path, sizeof (address->sun_path) - 1);
if (address_size != NULL)
*address_size = sizeof (struct sockaddr_un);
return (struct sockaddr *) address;
}
int
ply_connect_to_unix_socket (const char *path,
bool is_abstract)
{
struct sockaddr *address;
size_t address_size;
int fd;
assert (path != NULL);
assert (path[0] != '\0');
fd = ply_open_unix_socket ();
if (fd < 0)
return -1;
address = create_unix_address_from_path (path, is_abstract, &address_size);
if (connect (fd, address, address_size) < 0)
{
ply_save_errno ();
free (address);
close (fd);
ply_restore_errno ();
return -1;
}
free (address);
return fd;
}
int
ply_listen_to_unix_socket (const char *path,
bool is_abstract)
{
struct sockaddr *address;
size_t address_size;
int fd;
assert (path != NULL);
assert (path[0] != '\0');
fd = ply_open_unix_socket ();
if (fd < 0)
return -1;
address = create_unix_address_from_path (path, is_abstract, &address_size);
if (bind (fd, address, address_size) < 0)
{
ply_save_errno ();
free (address);
close (fd);
ply_restore_errno ();
return -1;
}
free (address);
if (listen (fd, PLY_SOCKET_CONNECTION_BACKLOG) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
if (!is_abstract)
{
if (fchmod (fd, 0600) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
}
return fd;
}
bool
ply_get_credentials_from_fd (int fd,
pid_t *pid,
uid_t *uid,
gid_t *gid)
{
struct ucred credentials;
socklen_t credential_size;
credential_size = sizeof (credentials);
if (getsockopt (fd, SOL_SOCKET, SO_PEERCRED, &credentials,
&credential_size) < 0)
return false;
if (credential_size < sizeof (credentials))
return false;
if (pid != NULL)
*pid = credentials.pid;
if (uid != NULL)
*uid = credentials.uid;
if (gid != NULL)
*gid = credentials.gid;
return true;
}
int
ply_create_unix_socket (const char *path)
{
struct sockaddr_un address;
int fd;
assert (path != NULL);
fd = socket (PF_UNIX, SOCK_STREAM, 0);
if (fd < 0)
return -1;
if (fcntl (fd, F_SETFD, O_NONBLOCK | FD_CLOEXEC) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
memset (&address, 0, sizeof (address));
address.sun_family = AF_UNIX;
memcpy (address.sun_path, path, strlen (path));
if (connect (fd, (struct sockaddr *) &address,
sizeof (struct sockaddr_un)) < 0)
{
ply_save_errno ();
close (fd);
ply_restore_errno ();
return -1;
}
return fd;
}
bool
ply_write (int fd,
const void *buffer,
size_t number_of_bytes)
{
size_t bytes_left_to_write;
size_t total_bytes_written = 0;
assert (fd >= 0);
bytes_left_to_write = number_of_bytes;
do
{
ssize_t bytes_written = 0;
bytes_written = write (fd,
((uint8_t *) buffer) + total_bytes_written,
bytes_left_to_write);
if (bytes_written > 0)
{
total_bytes_written += bytes_written;
bytes_left_to_write -= bytes_written;
}
else if ((errno != EINTR))
break;
}
while (bytes_left_to_write > 0);
return bytes_left_to_write == 0;
}
static ssize_t
ply_read_some_bytes (int fd,
void *buffer,
size_t max_bytes)
{
size_t bytes_left_to_read;
size_t total_bytes_read = 0;
assert (fd >= 0);
bytes_left_to_read = max_bytes;
do
{
ssize_t bytes_read = 0;
bytes_read = read (fd,
((uint8_t *) buffer) + total_bytes_read,
bytes_left_to_read);
if (bytes_read > 0)
{
total_bytes_read += bytes_read;
bytes_left_to_read -= bytes_read;
}
else if ((errno != EINTR))
break;
}
while (bytes_left_to_read > 0);
if ((bytes_left_to_read > 0) && (errno != EAGAIN))
total_bytes_read = -1;
return total_bytes_read;
}
bool
ply_read (int fd,
void *buffer,
size_t number_of_bytes)
{
size_t total_bytes_read;
bool read_was_successful;
assert (fd >= 0);
assert (buffer != NULL);
assert (number_of_bytes != 0);
total_bytes_read = ply_read_some_bytes (fd, buffer, number_of_bytes);
read_was_successful = total_bytes_read == number_of_bytes;
return read_was_successful;
}
bool
ply_fd_has_data (int fd)
{
struct pollfd poll_data;
int result;
poll_data.fd = fd;
poll_data.events = POLLIN | POLLPRI;
poll_data.revents = 0;
result = poll (&poll_data, 1, 10);
return result == 1
&& ((poll_data.revents & POLLIN)
|| (poll_data.revents & POLLPRI));
}
bool
ply_fd_can_take_data (int fd)
{
struct pollfd poll_data;
int result;
poll_data.fd = fd;
poll_data.events = POLLOUT;
poll_data.revents = 0;
result = poll (&poll_data, 1, 10);
return result == 1;
}
bool
ply_fd_may_block (int fd)
{
int flags;
assert (fd >= 0);
flags = fcntl (fd, F_GETFL);
return (flags & O_NONBLOCK) != 0;
}
char **
ply_copy_string_array (const char * const *array)
{
char **copy;
int i;
for (i = 0; array[i] != NULL; i++);
copy = calloc (i + 1, sizeof (char *));
for (i = 0; array[i] != NULL; i++)
copy[i] = strdup (array[i]);
return copy;
}
void
ply_free_string_array (char **array)
{
int i;
if (array == NULL)
return;
for (i = 0; array[i] != NULL; i++)
{
free (array[i]);
array[i] = NULL;
}
free (array);
}
static int
ply_get_max_open_fds (void)
{
struct rlimit open_fd_limit;
if (getrlimit (RLIMIT_NOFILE, &open_fd_limit) < 0)
return -1;
if (open_fd_limit.rlim_cur == RLIM_INFINITY)
return -1;
return (int) open_fd_limit.rlim_cur;
}
static bool
ply_close_open_fds (void)
{
DIR *dir;
struct dirent *entry;
int fd, opendir_fd;
opendir_fd = -1;
dir = opendir (PLY_OPEN_FILE_DESCRIPTORS_DIR);
if (dir == NULL)
return false;
while ((entry = readdir (dir)) != NULL)
{
long filename_as_number;
char *byte_after_number;
errno = 0;
if (entry->d_name[0] == '.')
continue;
fd = -1;
filename_as_number = strtol (entry->d_name, &byte_after_number, 10);
if (byte_after_number != NULL)
continue;
if ((*byte_after_number != '\0') ||
(filename_as_number < 0) ||
(filename_as_number > INT_MAX))
return false;
fd = (int) filename_as_number;
if (fd != opendir_fd)
close (fd);
}
assert (entry == NULL);
closedir (dir);
return true;
}
void
ply_close_all_fds (void)
{
int max_open_fds, fd;
max_open_fds = ply_get_max_open_fds ();
/* if there isn't a reported maximum for some
* reason, then open up /proc/self/fd and close
* the ones we can find. If that doesn't work
* out, then just bite the bullet and close the
* entire integer range
*/
if (max_open_fds < 0)
{
if (ply_close_open_fds ())
return;
max_open_fds = INT_MAX;
}
else for (fd = 0; fd < max_open_fds; fd++)
close (fd);
}
double
ply_get_timestamp (void)
{
const double microseconds_per_second = 1000000.0;
double timestamp;
struct timeval now = { 0L, /* zero-filled */ };
gettimeofday (&now, NULL);
timestamp = ((microseconds_per_second * now.tv_sec) + now.tv_usec) /
microseconds_per_second;
return timestamp;
}
void
ply_save_errno (void)
{
assert (errno_stack_position < PLY_ERRNO_STACK_SIZE);
errno_stack[errno_stack_position] = errno;
errno_stack_position++;
}
void
ply_restore_errno (void)
{
assert (errno_stack_position > 0);
errno_stack_position--;
errno = errno_stack[errno_stack_position];
}
bool
ply_directory_exists (const char *dir)
{
struct stat file_info;
if (stat (dir, &file_info) < 0)
return false;
return S_ISDIR (file_info.st_mode);
}
bool
ply_file_exists (const char *file)
{
struct stat file_info;
if (stat (file, &file_info) < 0)
return false;
return S_ISREG (file_info.st_mode);
}
void
ply_list_directory (const char *path)
{
DIR *dir;
struct dirent *entry;
static int level = 0;
dir = opendir (path);
if (dir == NULL)
return;
if (level > 5)
return;
int index = 0;
while ((entry = readdir (dir)) != NULL)
{
char *subdir;
index++;
if (index > 10)
break;
subdir = NULL;
asprintf (&subdir, "%s/%s", path, entry->d_name);
ply_error ("%s ", subdir);
level++;
if (entry->d_name[0] != '.')
ply_list_directory (subdir);
level--;
free (subdir);
}
closedir (dir);
}
ply_module_handle_t *
ply_open_module (const char *module_path)
{
ply_module_handle_t *handle;
assert (module_path != NULL);
handle = (ply_module_handle_t *) dlopen (module_path, RTLD_NOW | RTLD_LOCAL);
if (handle == NULL)
{
ply_trace("Could not load module \"%s\": %s\n", module_path, dlerror());
if (errno == 0)
errno = ELIBACC;
}
return handle;
}
ply_module_function_t
ply_module_look_up_function (ply_module_handle_t *handle,
const char *function_name)
{
ply_module_function_t function;
assert (handle != NULL);
assert (function_name != NULL);
dlerror ();
function = (ply_module_function_t) dlsym (handle, function_name);
if (dlerror () != NULL)
{
if (errno == 0)
errno = ELIBACC;
return NULL;
}
return function;
}
void
ply_close_module (ply_module_handle_t *handle)
{
dlclose (handle);
}
bool
ply_create_directory (const char *directory)
{
assert (directory != NULL);
assert (directory[0] != '\0');
if (ply_directory_exists (directory))
{
ply_trace ("directory '%s' already exists", directory);
return true;
}
if (ply_file_exists (directory))
{
ply_trace ("file '%s' is in the way", directory);
errno = EEXIST;
return false;
}
if (mkdir (directory, 0755) < 0)
{
char *parent_directory;
char *last_path_component;
bool is_created;
is_created = errno == EEXIST;
if (errno == ENOENT)
{
parent_directory = strdup (directory);
last_path_component = strrchr (parent_directory, '/');
*last_path_component = '\0';
ply_trace ("parent directory '%s' doesn't exist, creating it first", parent_directory);
if (ply_create_directory (parent_directory)
&& ((mkdir (directory, 0755) == 0) || errno == EEXIST))
is_created = true;
ply_save_errno ();
free (parent_directory);
ply_restore_errno ();
}
return is_created;
}
return true;
}
ply_daemon_handle_t *
ply_create_daemon (void)
{
pid_t pid;
int sender_fd, receiver_fd;
int *handle;
if (!ply_open_unidirectional_pipe (&sender_fd, &receiver_fd))
return NULL;
handle = calloc (1, sizeof (int));
pid = fork ();
if (pid < 0)
return NULL;
if (pid != 0)
{
uint8_t byte;
close (sender_fd);
if (!ply_read (receiver_fd, &byte, sizeof (uint8_t)))
{
ply_error ("could not read byte from child: %m");
_exit (1);
}
_exit ((int) byte);
}
close (receiver_fd);
*handle = sender_fd;
return (ply_daemon_handle_t *) handle;
}
bool
ply_detach_daemon (ply_daemon_handle_t *handle,
int exit_code)
{
int sender_fd;
uint8_t byte;
assert (handle != NULL);
assert (exit_code >= 0 && exit_code < 256);
sender_fd = *(int *) handle;
byte = (uint8_t) exit_code;
if (!ply_write (sender_fd, &byte, sizeof (uint8_t)))
return false;
close (sender_fd);
free (handle);
return true;
}
/* vim: set ts=4 sw=4 expandtab autoindent cindent cino={.5s,(0: */
|