4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29 #include <sys/ioctl.h>
32 #include <avahi-common/malloc.h>
39 AvahiNetlinkCallback callback;
44 const AvahiPoll *poll_api;
48 int avahi_netlink_work(AvahiNetlink *nl, int block) {
55 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
59 iov.iov_base = nl->buffer;
60 iov.iov_len = nl->buffer_length;
66 smsg.msg_control = cred_msg;
67 smsg.msg_controllen = sizeof(cred_msg);
68 smsg.msg_flags = (block ? 0 : MSG_DONTWAIT);
70 if ((bytes = recvmsg(nl->fd, &smsg, 0)) < 0) {
71 if (errno == EAGAIN || errno == EINTR)
74 avahi_log_error(__FILE__": recvmsg() failed: %s", strerror(errno));
78 cmsg = CMSG_FIRSTHDR(&smsg);
80 if (!cmsg || cmsg->cmsg_type != SCM_CREDENTIALS) {
81 avahi_log_warn("No sender credentials received, ignoring data.");
85 cred = (struct ucred*) CMSG_DATA(cmsg);
90 p = (struct nlmsghdr *) nl->buffer;
94 for (; bytes > 0; p = NLMSG_NEXT(p, bytes)) {
95 if (!NLMSG_OK(p, (size_t) bytes)) {
96 avahi_log_warn(__FILE__": packet truncated");
100 nl->callback(nl, p, nl->userdata);
106 static void socket_event(AvahiWatch *w, int fd, AVAHI_GCC_UNUSED AvahiWatchEvent event, void *userdata) {
107 AvahiNetlink *nl = userdata;
111 assert(fd == nl->fd);
113 avahi_netlink_work(nl, 0);
116 AvahiNetlink *avahi_netlink_new(const AvahiPoll *poll_api, uint32_t groups, void (*cb) (AvahiNetlink *nl, struct nlmsghdr *n, void* userdata), void* userdata) {
119 struct sockaddr_nl addr;
120 AvahiNetlink *nl = NULL;
125 if ((fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE)) < 0) {
126 avahi_log_error(__FILE__": socket(PF_NETLINK): %s", strerror(errno));
130 memset(&addr, 0, sizeof(addr));
131 addr.nl_family = AF_NETLINK;
132 addr.nl_groups = groups;
133 addr.nl_pid = getpid();
135 if (bind(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
136 avahi_log_error(__FILE__": bind(): %s", strerror(errno));
140 if (setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) {
141 avahi_log_error(__FILE__": SO_PASSCRED: %s", strerror(errno));
145 if (!(nl = avahi_new(AvahiNetlink, 1))) {
146 avahi_log_error(__FILE__": avahi_new() failed.");
150 nl->poll_api = poll_api;
154 nl->userdata = userdata;
156 if (!(nl->buffer = avahi_new(uint8_t, nl->buffer_length = 64*1024))) {
157 avahi_log_error(__FILE__": avahi_new() failed.");
161 if (!(nl->watch = poll_api->watch_new(poll_api, fd, AVAHI_WATCH_IN, socket_event, nl))) {
162 avahi_log_error(__FILE__": Failed to create watch.");
174 avahi_free(nl->buffer);
181 void avahi_netlink_free(AvahiNetlink *nl) {
185 nl->poll_api->watch_free(nl->watch);
190 avahi_free(nl->buffer);
194 int avahi_netlink_send(AvahiNetlink *nl, struct nlmsghdr *m, unsigned *ret_seq) {
198 m->nlmsg_seq = nl->seq++;
199 m->nlmsg_flags |= NLM_F_ACK;
201 if (send(nl->fd, m, m->nlmsg_len, 0) < 0) {
202 avahi_log_error(__FILE__": send(): %s", strerror(errno));
207 *ret_seq = m->nlmsg_seq;