all repos — tint2 @ 58e030de5d4ad86c8ee0d9342d3a1d862f37e406

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/util/uevent.c (raw)

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
/**************************************************************************
*
* Linux Kernel uevent handler
*
* Copyright (C) 2015 Sebastian Reichel <sre@ring0.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* or any later version as published by the Free Software Foundation.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
**************************************************************************/

#include "uevent.h"
int uevent_fd = -1;

#ifdef ENABLE_UEVENT

#include <string.h>
#include <stdlib.h>
#include <unistd.h>

#include <sys/socket.h>
#include <sys/types.h>

#include <linux/types.h>
#include <linux/netlink.h>

#include "common.h"

static struct sockaddr_nl nls;
static GList *notifiers = NULL;

static const char *has_prefix(const char *str, const char *end, const char *prefix, size_t prefixlen)
{
    if ((end - str) < prefixlen)
        return NULL;

    if (!memcmp(str, prefix, prefixlen))
        return str + prefixlen;

    return NULL;
}

#define HAS_CONST_PREFIX(str, end, prefix) has_prefix((str), end, prefix, sizeof(prefix) - 1)

static void uevent_param_free(gpointer data)
{
    struct uevent_parameter *param = data;
    free(param->key);
    free(param->val);
    free(param);
}

static void uevent_free(struct uevent *ev)
{
    free(ev->path);
    free(ev->subsystem);
    g_list_free_full(ev->params, uevent_param_free);
    free(ev);
}

static struct uevent *uevent_new(char *buffer, int size)
{
    gboolean first = TRUE;

    if (size == 0)
        return NULL;

    struct uevent *ev = calloc(1, sizeof(*ev));
    if (!ev)
        return NULL;

    /* ensure nul termination required by strlen() */
    buffer[size - 1] = '\0';

    const char *s = buffer;
    const char *end = s + size;
    for (; s < end; s += strlen(s) + 1) {
        if (first) {
            const char *p = strchr(s, '@');
            if (!p) {
                /* error: kernel events contain @ */
                /* triggered by udev events, though */
                free(ev);
                return NULL;
            }
            ev->path = strdup(p + 1);
            first = FALSE;
        } else {
            const char *val;
            if ((val = HAS_CONST_PREFIX(s, end, "ACTION=")) != NULL) {
                if (!strcmp(val, "add"))
                    ev->action = UEVENT_ADD;
                else if (!strcmp(val, "remove"))
                    ev->action = UEVENT_REMOVE;
                else if (!strcmp(val, "change"))
                    ev->action = UEVENT_CHANGE;
                else
                    ev->action = UEVENT_UNKNOWN;
            } else if ((val = HAS_CONST_PREFIX(s, end, "SEQNUM=")) != NULL) {
                ev->sequence = atoi(val);
            } else if ((val = HAS_CONST_PREFIX(s, end, "SUBSYSTEM=")) != NULL) {
                ev->subsystem = strdup(val);
            } else {
                val = strchr(s, '=');
                if (val) {
                    struct uevent_parameter *param = malloc(sizeof(*param));
                    if (param) {
                        param->key = strndup(s, val - s);
                        param->val = strdup(val + 1);
                        ev->params = g_list_append(ev->params, param);
                    }
                }
            }
        }
    }

    return ev;
}

void uevent_register_notifier(struct uevent_notify *nb)
{
    notifiers = g_list_append(notifiers, nb);
}

void uevent_unregister_notifier(struct uevent_notify *nb)
{
    GList *l = notifiers;

    while (l != NULL) {
        GList *next = l->next;
        struct uevent_notify *lnb = l->data;

        if (memcmp(nb, lnb, sizeof(struct uevent_notify)) == 0)
            notifiers = g_list_delete_link(notifiers, l);

        l = next;
    }
}

void uevent_handler()
{
    if (uevent_fd < 0)
        return;

    char buf[512];
    int len = recv(uevent_fd, buf, sizeof(buf), MSG_DONTWAIT);
    if (len < 0)
        return;

    struct uevent *ev = uevent_new(buf, len);
    if (ev) {
        for (GList *l = notifiers; l; l = l->next) {
            struct uevent_notify *nb = l->data;

            if (!(ev->action & nb->action))
                continue;

            if (nb->subsystem && strcmp(ev->subsystem, nb->subsystem))
                continue;

            nb->cb(ev, nb->userdata);
        }

        uevent_free(ev);
    }
}

int uevent_init()
{
    /* Open hotplug event netlink socket */
    memset(&nls, 0, sizeof(struct sockaddr_nl));
    nls.nl_family = AF_NETLINK;
    nls.nl_pid = getpid();
    nls.nl_groups = -1;

    /* open socket */
    uevent_fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
    if (uevent_fd < 0) {
        fprintf(stderr, "tint2: Error: socket open failed\n");
        return -1;
    }

    /* Listen to netlink socket */
    if (bind(uevent_fd, (void *)&nls, sizeof(struct sockaddr_nl))) {
        fprintf(stderr, "tint2: Bind failed\n");
        return -1;
    }

    fprintf(stderr, "tint2: Kernel uevent interface initialized...\n");

    return uevent_fd;
}

void uevent_cleanup()
{
    if (uevent_fd >= 0)
        close(uevent_fd);
}

#endif