chiark / gitweb /
bus: properly handle if new objects are installed in the node tree while we are dispa...
[elogind.git] / src / udev / udev-builtin-firmware.c
1 /*
2  * firmware - Kernel firmware loader
3  *
4  * Copyright (C) 2009 Piter Punk <piterpunk@slackware.com>
5  * Copyright (C) 2009-2011 Kay Sievers <kay@vrfy.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details:*
16  */
17
18 #include <unistd.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <stdio.h>
22 #include <getopt.h>
23 #include <errno.h>
24 #include <stdbool.h>
25 #include <sys/utsname.h>
26 #include <sys/stat.h>
27
28 #include "udev.h"
29
30 static bool set_loading(struct udev *udev, char *loadpath, const char *state)
31 {
32         FILE *ldfile;
33
34         ldfile = fopen(loadpath, "we");
35         if (ldfile == NULL) {
36                 log_error("error: can not open '%s'\n", loadpath);
37                 return false;
38         };
39         fprintf(ldfile, "%s\n", state);
40         fclose(ldfile);
41         return true;
42 }
43
44 static bool copy_firmware(struct udev *udev, const char *source, const char *target, size_t size)
45 {
46         char *buf;
47         FILE *fsource = NULL, *ftarget = NULL;
48         bool ret = false;
49
50         buf = malloc(size);
51         if (buf == NULL) {
52                 log_error("No memory available to load firmware file");
53                 return false;
54         }
55
56         log_debug("writing '%s' (%zi) to '%s'\n", source, size, target);
57
58         fsource = fopen(source, "re");
59         if (fsource == NULL)
60                 goto exit;
61         ftarget = fopen(target, "we");
62         if (ftarget == NULL)
63                 goto exit;
64         if (fread(buf, size, 1, fsource) != 1)
65                 goto exit;
66         if (fwrite(buf, size, 1, ftarget) == 1)
67                 ret = true;
68 exit:
69         if (ftarget != NULL)
70                 fclose(ftarget);
71         if (fsource != NULL)
72                 fclose(fsource);
73         free(buf);
74         return ret;
75 }
76
77 static int builtin_firmware(struct udev_device *dev, int argc, char *argv[], bool test)
78 {
79         struct udev *udev = udev_device_get_udev(dev);
80         static const char *searchpath[] = { FIRMWARE_PATH };
81         char loadpath[UTIL_PATH_SIZE];
82         char datapath[UTIL_PATH_SIZE];
83         char fwpath[UTIL_PATH_SIZE];
84         const char *firmware;
85         FILE *fwfile = NULL;
86         struct utsname kernel;
87         struct stat statbuf;
88         unsigned int i;
89         int rc = EXIT_SUCCESS;
90
91         firmware = udev_device_get_property_value(dev, "FIRMWARE");
92         if (firmware == NULL) {
93                 log_error("firmware parameter missing\n\n");
94                 rc = EXIT_FAILURE;
95                 goto exit;
96         }
97
98         /* lookup firmware file */
99         uname(&kernel);
100         for (i = 0; i < ELEMENTSOF(searchpath); i++) {
101                 strscpyl(fwpath, sizeof(fwpath), searchpath[i], kernel.release, "/", firmware, NULL);
102                 fwfile = fopen(fwpath, "re");
103                 if (fwfile != NULL)
104                         break;
105
106                 strscpyl(fwpath, sizeof(fwpath), searchpath[i], firmware, NULL);
107                 fwfile = fopen(fwpath, "re");
108                 if (fwfile != NULL)
109                         break;
110         }
111
112         strscpyl(loadpath, sizeof(loadpath), udev_device_get_syspath(dev), "/loading", NULL);
113
114         if (fwfile == NULL) {
115                 log_debug("did not find firmware file '%s'\n", firmware);
116                 rc = EXIT_FAILURE;
117                 /*
118                  * Do not cancel the request in the initrd, the real root might have
119                  * the firmware file and the 'coldplug' run in the real root will find
120                  * this pending request and fulfill or cancel it.
121                  * */
122                 if (!in_initrd())
123                         set_loading(udev, loadpath, "-1");
124                 goto exit;
125         }
126
127         if (stat(fwpath, &statbuf) < 0 || statbuf.st_size == 0) {
128                 if (!in_initrd())
129                         set_loading(udev, loadpath, "-1");
130                 rc = EXIT_FAILURE;
131                 goto exit;
132         }
133
134         if (!set_loading(udev, loadpath, "1"))
135                 goto exit;
136
137         strscpyl(datapath, sizeof(datapath), udev_device_get_syspath(dev), "/data", NULL);
138         if (!copy_firmware(udev, fwpath, datapath, statbuf.st_size)) {
139                 log_error("error sending firmware '%s' to device\n", firmware);
140                 set_loading(udev, loadpath, "-1");
141                 rc = EXIT_FAILURE;
142                 goto exit;
143         };
144
145         set_loading(udev, loadpath, "0");
146 exit:
147         if (fwfile)
148                 fclose(fwfile);
149         return rc;
150 }
151
152 const struct udev_builtin udev_builtin_firmware = {
153         .name = "firmware",
154         .cmd = builtin_firmware,
155         .help = "kernel firmware loader",
156         .run_once = true,
157 };