blob: 9084f2550c2a1c512d12e35e738e657ce53db6ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel userspace event delivery
3 *
4 * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2004 Novell, Inc. All rights reserved.
6 * Copyright (C) 2004 IBM, Inc. All rights reserved.
7 *
8 * Licensed under the GNU GPL v2.
9 *
10 * Authors:
11 * Robert Love <rml@novell.com>
12 * Kay Sievers <kay.sievers@vrfy.org>
13 * Arjan van de Ven <arjanv@redhat.com>
14 * Greg Kroah-Hartman <greg@kroah.com>
15 */
16
17#include <linux/spinlock.h>
Denis V. Lunev2d38f9a2008-03-27 14:26:30 -070018#include <linux/string.h>
19#include <linux/kobject.h>
20#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Denis V. Lunev2d38f9a2008-03-27 14:26:30 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/socket.h>
24#include <linux/skbuff.h>
25#include <linux/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/sock.h>
Eric W. Biederman07e98962010-05-04 17:36:44 -070027#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Cornelia Huckcd030c42007-07-20 13:58:13 +020030u64 uevent_seqnum;
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020031char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
Cornelia Huckcd030c42007-07-20 13:58:13 +020032static DEFINE_SPINLOCK(sequence_lock);
Eric W. Biederman07e98962010-05-04 17:36:44 -070033#ifdef CONFIG_NET
34struct uevent_sock {
35 struct list_head list;
36 struct sock *sk;
37};
38static LIST_HEAD(uevent_sock_list);
39static DEFINE_MUTEX(uevent_sock_mutex);
Cornelia Huckcd030c42007-07-20 13:58:13 +020040#endif
41
Kay Sievers5c5daf62007-08-12 20:43:55 +020042/* the strings here must match the enum in include/linux/kobject.h */
43static const char *kobject_actions[] = {
44 [KOBJ_ADD] = "add",
45 [KOBJ_REMOVE] = "remove",
46 [KOBJ_CHANGE] = "change",
47 [KOBJ_MOVE] = "move",
48 [KOBJ_ONLINE] = "online",
49 [KOBJ_OFFLINE] = "offline",
50};
51
52/**
53 * kobject_action_type - translate action string to numeric type
54 *
55 * @buf: buffer containing the action string, newline is ignored
56 * @len: length of buffer
57 * @type: pointer to the location to store the action type
58 *
59 * Returns 0 if the action string was recognized.
60 */
61int kobject_action_type(const char *buf, size_t count,
62 enum kobject_action *type)
63{
64 enum kobject_action action;
65 int ret = -EINVAL;
66
Mark Lorda9edadb2008-03-28 19:05:25 -040067 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020068 count--;
69
70 if (!count)
71 goto out;
72
73 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
74 if (strncmp(kobject_actions[action], buf, count) != 0)
75 continue;
76 if (kobject_actions[action][count] != '\0')
77 continue;
78 *type = action;
79 ret = 0;
80 break;
81 }
82out:
83 return ret;
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/**
Cornelia Huck8a824722006-11-20 17:07:51 +010087 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 *
Kay Sieversccd490a2007-08-12 20:43:55 +020089 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +010091 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -080092 *
93 * Returns 0 if kobject_uevent() is completed with success or the
94 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -080096int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +020097 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Kay Sievers7eff2e72007-08-14 15:15:12 +020099 struct kobj_uevent_env *env;
100 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100101 const char *devpath = NULL;
102 const char *subsystem;
103 struct kobject *top_kobj;
104 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100105 const struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100106 u64 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800108 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700109#ifdef CONFIG_NET
110 struct uevent_sock *ue_sk;
111#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800113 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700114 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Kay Sievers5f123fb2005-11-11 14:43:07 +0100116 /* search the kset we belong to */
117 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200118 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400119 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200120
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800121 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800122 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
123 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700124 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800125 return -EINVAL;
126 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100127
128 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100129 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100130
Ming Leif67f1292009-03-01 21:10:49 +0800131 /* skip the event, if uevent_suppress is set*/
132 if (kobj->uevent_suppress) {
133 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
134 "caused the event to drop!\n",
135 kobject_name(kobj), kobj, __func__);
136 return 0;
137 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200138 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100139 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800140 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800141 pr_debug("kobject: '%s' (%p): %s: filter function "
142 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700143 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800144 return 0;
145 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100146
Kay Sievers86406242007-03-14 03:25:56 +0100147 /* originating subsystem */
148 if (uevent_ops && uevent_ops->name)
149 subsystem = uevent_ops->name(kset, kobj);
150 else
151 subsystem = kobject_name(&kset->kobj);
152 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800153 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
154 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700155 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100156 return 0;
157 }
158
Kay Sievers7eff2e72007-08-14 15:15:12 +0200159 /* environment buffer */
160 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
161 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800162 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Kay Sievers5f123fb2005-11-11 14:43:07 +0100164 /* complete object path */
165 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800166 if (!devpath) {
167 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Kay Sievers5f123fb2005-11-11 14:43:07 +0100171 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200172 retval = add_uevent_var(env, "ACTION=%s", action_string);
173 if (retval)
174 goto exit;
175 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
176 if (retval)
177 goto exit;
178 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
179 if (retval)
180 goto exit;
181
182 /* keys passed in from the caller */
183 if (envp_ext) {
184 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900185 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200186 if (retval)
187 goto exit;
188 }
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Kay Sievers5f123fb2005-11-11 14:43:07 +0100191 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100192 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200193 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800195 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
196 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700197 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto exit;
199 }
200 }
201
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100202 /*
203 * Mark "add" and "remove" events in the object to ensure proper
204 * events to userspace during automatic cleanup. If the object did
205 * send an "add" event, "remove" will automatically generated by
206 * the core, if not already done by the caller.
207 */
208 if (action == KOBJ_ADD)
209 kobj->state_add_uevent_sent = 1;
210 else if (action == KOBJ_REMOVE)
211 kobj->state_remove_uevent_sent = 1;
212
Kay Sievers7eff2e72007-08-14 15:15:12 +0200213 /* we will send an event, so request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100215 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 spin_unlock(&sequence_lock);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200217 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)seq);
218 if (retval)
219 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200221#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100222 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700223 mutex_lock(&uevent_sock_mutex);
224 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
225 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100226 struct sk_buff *skb;
227 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Kay Sievers5f123fb2005-11-11 14:43:07 +0100229 /* allocate message with the maximum possible size */
230 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200231 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100232 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200233 char *scratch;
234
Kay Sievers5f123fb2005-11-11 14:43:07 +0100235 /* add header */
236 scratch = skb_put(skb, len);
237 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Kay Sievers5f123fb2005-11-11 14:43:07 +0100239 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200240 for (i = 0; i < env->envp_idx; i++) {
241 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100242 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200243 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Kay Sievers5f123fb2005-11-11 14:43:07 +0100246 NETLINK_CB(skb).dst_group = 1;
Ming Leie0d7bf52008-11-16 18:23:27 +0800247 retval = netlink_broadcast(uevent_sock, skb, 0, 1,
248 GFP_KERNEL);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800249 /* ENOBUFS should be handled in userspace */
250 if (retval == -ENOBUFS)
251 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800252 } else
253 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100254 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700255 mutex_unlock(&uevent_sock_mutex);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200256#endif
Kay Sievers5f123fb2005-11-11 14:43:07 +0100257
258 /* call uevent_helper, usually only enabled during early boot */
Kay Sievers312c0042005-11-16 09:00:00 +0100259 if (uevent_helper[0]) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100260 char *argv [3];
261
Kay Sievers312c0042005-11-16 09:00:00 +0100262 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100263 argv [1] = (char *)subsystem;
264 argv [2] = NULL;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200265 retval = add_uevent_var(env, "HOME=/");
266 if (retval)
267 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800268 retval = add_uevent_var(env,
269 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200270 if (retval)
271 goto exit;
272
Wang Chen0ad1d6f2008-06-24 16:59:02 +0800273 retval = call_usermodehelper(argv[0], argv,
Hugh Dickins05f54c12009-04-16 21:55:29 +0100274 env->envp, UMH_WAIT_EXEC);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100278 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200279 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800280 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
Cornelia Huck8a824722006-11-20 17:07:51 +0100282EXPORT_SYMBOL_GPL(kobject_uevent_env);
283
284/**
285 * kobject_uevent - notify userspace by ending an uevent
286 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200287 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100288 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800289 *
290 * Returns 0 if kobject_uevent() is completed with success or the
291 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100292 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800293int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100294{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800295 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100296}
Kay Sievers312c0042005-11-16 09:00:00 +0100297EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200300 * add_uevent_var - add key value string to the environment buffer
301 * @env: environment buffer structure
302 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 *
304 * Returns 0 if environment variable was added successfully or -ENOMEM
305 * if no space was available.
306 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200307int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200310 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Kay Sievers7eff2e72007-08-14 15:15:12 +0200312 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700313 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200318 len = vsnprintf(&env->buf[env->buflen],
319 sizeof(env->buf) - env->buflen,
320 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 va_end(args);
322
Kay Sievers7eff2e72007-08-14 15:15:12 +0200323 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700324 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Kay Sievers7eff2e72007-08-14 15:15:12 +0200328 env->envp[env->envp_idx++] = &env->buf[env->buflen];
329 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
Kay Sievers312c0042005-11-16 09:00:00 +0100332EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200334#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700335static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100336{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700337 struct uevent_sock *ue_sk;
338
339 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
340 if (!ue_sk)
341 return -ENOMEM;
342
343 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT,
344 1, NULL, NULL, THIS_MODULE);
345 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100346 printk(KERN_ERR
347 "kobject_uevent: unable to create netlink socket!\n");
348 return -ENODEV;
349 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700350 mutex_lock(&uevent_sock_mutex);
351 list_add_tail(&ue_sk->list, &uevent_sock_list);
352 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100353 return 0;
354}
355
Eric W. Biederman07e98962010-05-04 17:36:44 -0700356static void uevent_net_exit(struct net *net)
357{
358 struct uevent_sock *ue_sk;
359
360 mutex_lock(&uevent_sock_mutex);
361 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
362 if (sock_net(ue_sk->sk) == net)
363 goto found;
364 }
365 mutex_unlock(&uevent_sock_mutex);
366 return;
367
368found:
369 list_del(&ue_sk->list);
370 mutex_unlock(&uevent_sock_mutex);
371
372 netlink_kernel_release(ue_sk->sk);
373 kfree(ue_sk);
374}
375
376static struct pernet_operations uevent_net_ops = {
377 .init = uevent_net_init,
378 .exit = uevent_net_exit,
379};
380
381static int __init kobject_uevent_init(void)
382{
383 netlink_set_nonroot(NETLINK_KOBJECT_UEVENT, NL_NONROOT_RECV);
384 return register_pernet_subsys(&uevent_net_ops);
385}
386
387
Kay Sievers5f123fb2005-11-11 14:43:07 +0100388postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200389#endif