]>
git.saurik.com Git - apple/syslog.git/blob - syslogd.tproj/bsd_in.c
8e4e10b91a9746ec524e3da3b9ab23f237fc252c
2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <sys/fcntl.h>
37 #define MY_ID "bsd_in"
43 bsd_in_acceptmsg(int fd
)
47 char line
[MAXLINE
+ 1];
48 struct sockaddr_un sun
;
50 len
= sizeof(struct sockaddr_un
);
51 n
= recvfrom(fd
, line
, MAXLINE
, 0, (struct sockaddr
*)&sun
, &len
);
53 if (n
<= 0) return NULL
;
56 return asl_syslog_input_convert(line
, n
, NULL
, 0);
62 struct sockaddr_un sun
;
66 asldebug("%s: init\n", MY_ID
);
67 if (sock
>= 0) return sock
;
69 unlink(_PATH_SYSLOG_IN
);
70 sock
= socket(AF_UNIX
, SOCK_DGRAM
, 0);
73 asldebug("%s: couldn't create socket for %s: %s\n", MY_ID
, _PATH_SYSLOG_IN
, strerror(errno
));
77 asldebug("%s: creating %s for fd %d\n", MY_ID
, _PATH_SYSLOG_IN
, sock
);
79 memset(&sun
, 0, sizeof(sun
));
80 sun
.sun_family
= AF_UNIX
;
81 strcpy(sun
.sun_path
, _PATH_SYSLOG_IN
);
83 len
= sizeof(struct sockaddr_un
);
84 if (bind(sock
, (struct sockaddr
*)&sun
, len
) < 0)
86 asldebug("%s: couldn't bind socket %d for %s: %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
92 rbufsize
= 128 * 1024;
93 len
= sizeof(rbufsize
);
95 if (setsockopt(sock
, SOL_SOCKET
, SO_RCVBUF
, &rbufsize
, len
) < 0)
97 asldebug("%s: couldn't set receive buffer size for socket %d (%s): %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
103 if (fcntl(sock
, F_SETFL
, O_NONBLOCK
) < 0)
105 asldebug("%s: couldn't set O_NONBLOCK for socket %d (%s): %s\n", MY_ID
, sock
, _PATH_SYSLOG_IN
, strerror(errno
));
111 chmod(_PATH_SYSLOG_IN
, 0666);
113 return aslevent_addfd(sock
, bsd_in_acceptmsg
, NULL
, NULL
);
125 if (sock
< 0) return 1;
128 unlink(_PATH_SYSLOG_IN
);