]>
git.saurik.com Git - apple/syslog.git/blob - syslogd.tproj/bsd_in.c
d1ccd50a1b9e88ff3c3e12f49d8cae9328d1b340
2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * "Portions Copyright (c) 2004 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <sys/fcntl.h>
38 #define MY_ID "bsd_in"
44 bsd_in_acceptmsg(int fd
)
48 char line
[MAXLINE
+ 1];
49 struct sockaddr_un sun
;
51 len
= sizeof(struct sockaddr_un
);
52 n
= recvfrom(fd
, line
, MAXLINE
, 0, (struct sockaddr
*)&sun
, &len
);
54 if (n
<= 0) return NULL
;
57 return asl_syslog_input_convert(line
, n
, NULL
, 0);
63 struct sockaddr_un sun
;
67 asldebug("%s: init\n", MY_ID
);
68 if (sock
>= 0) return sock
;
70 unlink(_PATH_SYSLOG_IN
);
71 sock
= socket(AF_UNIX
, SOCK_DGRAM
, 0);
74 asldebug("%s: couldn't create socket for %s: %s\n", MY_ID
, _PATH_SYSLOG_IN
, strerror(errno
));
78 asldebug("%s: creating %s for fd %d\n", MY_ID
, _PATH_SYSLOG_IN
, sock
);
80 memset(&sun
, 0, sizeof(sun
));
81 sun
.sun_family
= AF_UNIX
;
82 strcpy(sun
.sun_path
, _PATH_SYSLOG_IN
);
84 len
= sizeof(struct sockaddr_un
);
85 if (bind(sock
, (struct sockaddr
*)&sun
, len
) < 0)
87 asldebug("%s: couldn't bind socket %d for %s: %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
93 rbufsize
= 128 * 1024;
94 len
= sizeof(rbufsize
);
96 if (setsockopt(sock
, SOL_SOCKET
, SO_RCVBUF
, &rbufsize
, len
) < 0)
98 asldebug("%s: couldn't set receive buffer size for socket %d (%s): %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
104 if (fcntl(sock
, F_SETFL
, O_NONBLOCK
) < 0)
106 asldebug("%s: couldn't set O_NONBLOCK for socket %d (%s): %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
112 chmod(_PATH_SYSLOG_IN
, 0666);
114 return aslevent_addfd(sock
, bsd_in_acceptmsg
, NULL
, NULL
);
126 if (sock
< 0) return 1;
129 unlink(_PATH_SYSLOG_IN
);