Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame] | 1 | /* |
| 2 | * firmware_class.c - Multi purpose firmware loading support |
| 3 | * |
| 4 | * Copyright (c) 2003 Manuel Estrada Sainz |
| 5 | * |
| 6 | * Please see Documentation/firmware_class/ for more information. |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | #include <linux/capability.h> |
| 11 | #include <linux/device.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/timer.h> |
| 15 | #include <linux/vmalloc.h> |
| 16 | #include <linux/interrupt.h> |
| 17 | #include <linux/bitops.h> |
| 18 | #include <linux/mutex.h> |
| 19 | #include <linux/workqueue.h> |
| 20 | #include <linux/highmem.h> |
| 21 | #include <linux/firmware.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/sched.h> |
| 24 | #include <linux/file.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/async.h> |
| 27 | #include <linux/pm.h> |
| 28 | #include <linux/suspend.h> |
| 29 | #include <linux/syscore_ops.h> |
| 30 | #include <linux/reboot.h> |
| 31 | #include <linux/security.h> |
| 32 | |
| 33 | #include <generated/utsrelease.h> |
| 34 | |
| 35 | #include "base.h" |
| 36 | |
| 37 | MODULE_AUTHOR("Manuel Estrada Sainz"); |
| 38 | MODULE_DESCRIPTION("Multi purpose firmware loading support"); |
| 39 | MODULE_LICENSE("GPL"); |
| 40 | |
| 41 | /* Builtin firmware support */ |
| 42 | |
| 43 | #ifdef CONFIG_FW_LOADER |
| 44 | |
| 45 | extern struct builtin_fw __start_builtin_fw[]; |
| 46 | extern struct builtin_fw __end_builtin_fw[]; |
| 47 | |
| 48 | static bool fw_get_builtin_firmware(struct firmware *fw, const char *name) |
| 49 | { |
| 50 | struct builtin_fw *b_fw; |
| 51 | |
| 52 | for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) { |
| 53 | if (strcmp(name, b_fw->name) == 0) { |
| 54 | fw->size = b_fw->size; |
| 55 | fw->data = b_fw->data; |
| 56 | return true; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | return false; |
| 61 | } |
| 62 | |
| 63 | static bool fw_is_builtin_firmware(const struct firmware *fw) |
| 64 | { |
| 65 | struct builtin_fw *b_fw; |
| 66 | |
| 67 | for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) |
| 68 | if (fw->data == b_fw->data) |
| 69 | return true; |
| 70 | |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | #else /* Module case - no builtin firmware support */ |
| 75 | |
| 76 | static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name) |
| 77 | { |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | static inline bool fw_is_builtin_firmware(const struct firmware *fw) |
| 82 | { |
| 83 | return false; |
| 84 | } |
| 85 | #endif |
| 86 | |
| 87 | enum { |
| 88 | FW_STATUS_LOADING, |
| 89 | FW_STATUS_DONE, |
| 90 | FW_STATUS_ABORT, |
| 91 | }; |
| 92 | |
| 93 | static int loading_timeout = 60; /* In seconds */ |
| 94 | |
| 95 | static inline long firmware_loading_timeout(void) |
| 96 | { |
| 97 | return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET; |
| 98 | } |
| 99 | |
| 100 | /* firmware behavior options */ |
| 101 | #define FW_OPT_UEVENT (1U << 0) |
| 102 | #define FW_OPT_NOWAIT (1U << 1) |
| 103 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 104 | #define FW_OPT_USERHELPER (1U << 2) |
| 105 | #else |
| 106 | #define FW_OPT_USERHELPER 0 |
| 107 | #endif |
| 108 | #ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK |
| 109 | #define FW_OPT_FALLBACK FW_OPT_USERHELPER |
| 110 | #else |
| 111 | #define FW_OPT_FALLBACK 0 |
| 112 | #endif |
| 113 | #define FW_OPT_NO_WARN (1U << 3) |
| 114 | |
| 115 | struct firmware_cache { |
| 116 | /* firmware_buf instance will be added into the below list */ |
| 117 | spinlock_t lock; |
| 118 | struct list_head head; |
| 119 | int state; |
| 120 | |
| 121 | #ifdef CONFIG_PM_SLEEP |
| 122 | /* |
| 123 | * Names of firmware images which have been cached successfully |
| 124 | * will be added into the below list so that device uncache |
| 125 | * helper can trace which firmware images have been cached |
| 126 | * before. |
| 127 | */ |
| 128 | spinlock_t name_lock; |
| 129 | struct list_head fw_names; |
| 130 | |
| 131 | struct delayed_work work; |
| 132 | |
| 133 | struct notifier_block pm_notify; |
| 134 | #endif |
| 135 | }; |
| 136 | |
| 137 | struct firmware_buf { |
| 138 | struct kref ref; |
| 139 | struct list_head list; |
| 140 | struct completion completion; |
| 141 | struct firmware_cache *fwc; |
| 142 | unsigned long status; |
| 143 | void *data; |
| 144 | size_t size; |
| 145 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 146 | bool is_paged_buf; |
| 147 | bool need_uevent; |
| 148 | struct page **pages; |
| 149 | int nr_pages; |
| 150 | int page_array_size; |
| 151 | struct list_head pending_list; |
| 152 | #endif |
| 153 | const char *fw_id; |
| 154 | }; |
| 155 | |
| 156 | struct fw_cache_entry { |
| 157 | struct list_head list; |
| 158 | const char *name; |
| 159 | }; |
| 160 | |
| 161 | struct fw_name_devm { |
| 162 | unsigned long magic; |
| 163 | const char *name; |
| 164 | }; |
| 165 | |
| 166 | #define to_fwbuf(d) container_of(d, struct firmware_buf, ref) |
| 167 | |
| 168 | #define FW_LOADER_NO_CACHE 0 |
| 169 | #define FW_LOADER_START_CACHE 1 |
| 170 | |
| 171 | static int fw_cache_piggyback_on_request(const char *name); |
| 172 | |
| 173 | /* fw_lock could be moved to 'struct firmware_priv' but since it is just |
| 174 | * guarding for corner cases a global lock should be OK */ |
| 175 | static DEFINE_MUTEX(fw_lock); |
| 176 | |
| 177 | static struct firmware_cache fw_cache; |
| 178 | |
| 179 | static struct firmware_buf *__allocate_fw_buf(const char *fw_name, |
| 180 | struct firmware_cache *fwc) |
| 181 | { |
| 182 | struct firmware_buf *buf; |
| 183 | |
| 184 | buf = kzalloc(sizeof(*buf), GFP_ATOMIC); |
| 185 | if (!buf) |
| 186 | return NULL; |
| 187 | |
| 188 | buf->fw_id = kstrdup_const(fw_name, GFP_ATOMIC); |
| 189 | if (!buf->fw_id) { |
| 190 | kfree(buf); |
| 191 | return NULL; |
| 192 | } |
| 193 | |
| 194 | kref_init(&buf->ref); |
| 195 | buf->fwc = fwc; |
| 196 | init_completion(&buf->completion); |
| 197 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 198 | INIT_LIST_HEAD(&buf->pending_list); |
| 199 | #endif |
| 200 | |
| 201 | pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf); |
| 202 | |
| 203 | return buf; |
| 204 | } |
| 205 | |
| 206 | static struct firmware_buf *__fw_lookup_buf(const char *fw_name) |
| 207 | { |
| 208 | struct firmware_buf *tmp; |
| 209 | struct firmware_cache *fwc = &fw_cache; |
| 210 | |
| 211 | list_for_each_entry(tmp, &fwc->head, list) |
| 212 | if (!strcmp(tmp->fw_id, fw_name)) |
| 213 | return tmp; |
| 214 | return NULL; |
| 215 | } |
| 216 | |
| 217 | static int fw_lookup_and_allocate_buf(const char *fw_name, |
| 218 | struct firmware_cache *fwc, |
| 219 | struct firmware_buf **buf) |
| 220 | { |
| 221 | struct firmware_buf *tmp; |
| 222 | |
| 223 | spin_lock(&fwc->lock); |
| 224 | tmp = __fw_lookup_buf(fw_name); |
| 225 | if (tmp) { |
| 226 | kref_get(&tmp->ref); |
| 227 | spin_unlock(&fwc->lock); |
| 228 | *buf = tmp; |
| 229 | return 1; |
| 230 | } |
| 231 | tmp = __allocate_fw_buf(fw_name, fwc); |
| 232 | if (tmp) |
| 233 | list_add(&tmp->list, &fwc->head); |
| 234 | spin_unlock(&fwc->lock); |
| 235 | |
| 236 | *buf = tmp; |
| 237 | |
| 238 | return tmp ? 0 : -ENOMEM; |
| 239 | } |
| 240 | |
| 241 | static void __fw_free_buf(struct kref *ref) |
| 242 | __releases(&fwc->lock) |
| 243 | { |
| 244 | struct firmware_buf *buf = to_fwbuf(ref); |
| 245 | struct firmware_cache *fwc = buf->fwc; |
| 246 | |
| 247 | pr_debug("%s: fw-%s buf=%p data=%p size=%u\n", |
| 248 | __func__, buf->fw_id, buf, buf->data, |
| 249 | (unsigned int)buf->size); |
| 250 | |
| 251 | list_del(&buf->list); |
| 252 | spin_unlock(&fwc->lock); |
| 253 | |
| 254 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 255 | if (buf->is_paged_buf) { |
| 256 | int i; |
| 257 | vunmap(buf->data); |
| 258 | for (i = 0; i < buf->nr_pages; i++) |
| 259 | __free_page(buf->pages[i]); |
| 260 | kfree(buf->pages); |
| 261 | } else |
| 262 | #endif |
| 263 | vfree(buf->data); |
| 264 | kfree_const(buf->fw_id); |
| 265 | kfree(buf); |
| 266 | } |
| 267 | |
| 268 | static void fw_free_buf(struct firmware_buf *buf) |
| 269 | { |
| 270 | struct firmware_cache *fwc = buf->fwc; |
| 271 | spin_lock(&fwc->lock); |
| 272 | if (!kref_put(&buf->ref, __fw_free_buf)) |
| 273 | spin_unlock(&fwc->lock); |
| 274 | } |
| 275 | |
| 276 | /* direct firmware loading support */ |
| 277 | static char fw_path_para[256]; |
| 278 | static const char * const fw_path[] = { |
| 279 | fw_path_para, |
| 280 | "/lib/firmware/updates/" UTS_RELEASE, |
| 281 | "/lib/firmware/updates", |
| 282 | "/lib/firmware/" UTS_RELEASE, |
| 283 | "/lib/firmware" |
| 284 | }; |
| 285 | |
| 286 | /* |
| 287 | * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH' |
| 288 | * from kernel command line because firmware_class is generally built in |
| 289 | * kernel instead of module. |
| 290 | */ |
| 291 | module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644); |
| 292 | MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path"); |
| 293 | |
| 294 | static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf) |
| 295 | { |
| 296 | int size; |
| 297 | char *buf; |
| 298 | int rc; |
| 299 | |
| 300 | if (!S_ISREG(file_inode(file)->i_mode)) |
| 301 | return -EINVAL; |
| 302 | size = i_size_read(file_inode(file)); |
| 303 | if (size <= 0) |
| 304 | return -EINVAL; |
| 305 | buf = vmalloc(size); |
| 306 | if (!buf) |
| 307 | return -ENOMEM; |
| 308 | rc = kernel_read(file, 0, buf, size); |
| 309 | if (rc != size) { |
| 310 | if (rc > 0) |
| 311 | rc = -EIO; |
| 312 | goto fail; |
| 313 | } |
| 314 | rc = security_kernel_fw_from_file(file, buf, size); |
| 315 | if (rc) |
| 316 | goto fail; |
| 317 | fw_buf->data = buf; |
| 318 | fw_buf->size = size; |
| 319 | return 0; |
| 320 | fail: |
| 321 | vfree(buf); |
| 322 | return rc; |
| 323 | } |
| 324 | |
| 325 | static int fw_get_filesystem_firmware(struct device *device, |
| 326 | struct firmware_buf *buf) |
| 327 | { |
| 328 | int i, len; |
| 329 | int rc = -ENOENT; |
| 330 | char *path; |
| 331 | |
| 332 | path = __getname(); |
| 333 | if (!path) |
| 334 | return -ENOMEM; |
| 335 | |
| 336 | for (i = 0; i < ARRAY_SIZE(fw_path); i++) { |
| 337 | struct file *file; |
| 338 | |
| 339 | /* skip the unset customized path */ |
| 340 | if (!fw_path[i][0]) |
| 341 | continue; |
| 342 | |
| 343 | len = snprintf(path, PATH_MAX, "%s/%s", |
| 344 | fw_path[i], buf->fw_id); |
| 345 | if (len >= PATH_MAX) { |
| 346 | rc = -ENAMETOOLONG; |
| 347 | break; |
| 348 | } |
| 349 | |
| 350 | file = filp_open(path, O_RDONLY, 0); |
| 351 | if (IS_ERR(file)) |
| 352 | continue; |
| 353 | rc = fw_read_file_contents(file, buf); |
| 354 | fput(file); |
| 355 | if (rc) |
| 356 | dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n", |
| 357 | path, rc); |
| 358 | else |
| 359 | break; |
| 360 | } |
| 361 | __putname(path); |
| 362 | |
| 363 | if (!rc) { |
| 364 | dev_dbg(device, "firmware: direct-loading firmware %s\n", |
| 365 | buf->fw_id); |
| 366 | mutex_lock(&fw_lock); |
| 367 | set_bit(FW_STATUS_DONE, &buf->status); |
| 368 | complete_all(&buf->completion); |
| 369 | mutex_unlock(&fw_lock); |
| 370 | } |
| 371 | |
| 372 | return rc; |
| 373 | } |
| 374 | |
| 375 | /* firmware holds the ownership of pages */ |
| 376 | static void firmware_free_data(const struct firmware *fw) |
| 377 | { |
| 378 | /* Loaded directly? */ |
| 379 | if (!fw->priv) { |
| 380 | vfree(fw->data); |
| 381 | return; |
| 382 | } |
| 383 | fw_free_buf(fw->priv); |
| 384 | } |
| 385 | |
| 386 | /* store the pages buffer info firmware from buf */ |
| 387 | static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw) |
| 388 | { |
| 389 | fw->priv = buf; |
| 390 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 391 | fw->pages = buf->pages; |
| 392 | #endif |
| 393 | fw->size = buf->size; |
| 394 | fw->data = buf->data; |
| 395 | |
| 396 | pr_debug("%s: fw-%s buf=%p data=%p size=%u\n", |
| 397 | __func__, buf->fw_id, buf, buf->data, |
| 398 | (unsigned int)buf->size); |
| 399 | } |
| 400 | |
| 401 | #ifdef CONFIG_PM_SLEEP |
| 402 | static void fw_name_devm_release(struct device *dev, void *res) |
| 403 | { |
| 404 | struct fw_name_devm *fwn = res; |
| 405 | |
| 406 | if (fwn->magic == (unsigned long)&fw_cache) |
| 407 | pr_debug("%s: fw_name-%s devm-%p released\n", |
| 408 | __func__, fwn->name, res); |
| 409 | kfree_const(fwn->name); |
| 410 | } |
| 411 | |
| 412 | static int fw_devm_match(struct device *dev, void *res, |
| 413 | void *match_data) |
| 414 | { |
| 415 | struct fw_name_devm *fwn = res; |
| 416 | |
| 417 | return (fwn->magic == (unsigned long)&fw_cache) && |
| 418 | !strcmp(fwn->name, match_data); |
| 419 | } |
| 420 | |
| 421 | static struct fw_name_devm *fw_find_devm_name(struct device *dev, |
| 422 | const char *name) |
| 423 | { |
| 424 | struct fw_name_devm *fwn; |
| 425 | |
| 426 | fwn = devres_find(dev, fw_name_devm_release, |
| 427 | fw_devm_match, (void *)name); |
| 428 | return fwn; |
| 429 | } |
| 430 | |
| 431 | /* add firmware name into devres list */ |
| 432 | static int fw_add_devm_name(struct device *dev, const char *name) |
| 433 | { |
| 434 | struct fw_name_devm *fwn; |
| 435 | |
| 436 | fwn = fw_find_devm_name(dev, name); |
| 437 | if (fwn) |
| 438 | return 1; |
| 439 | |
| 440 | fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm), |
| 441 | GFP_KERNEL); |
| 442 | if (!fwn) |
| 443 | return -ENOMEM; |
| 444 | fwn->name = kstrdup_const(name, GFP_KERNEL); |
| 445 | if (!fwn->name) { |
| 446 | devres_free(fwn); |
| 447 | return -ENOMEM; |
| 448 | } |
| 449 | |
| 450 | fwn->magic = (unsigned long)&fw_cache; |
| 451 | devres_add(dev, fwn); |
| 452 | |
| 453 | return 0; |
| 454 | } |
| 455 | #else |
| 456 | static int fw_add_devm_name(struct device *dev, const char *name) |
| 457 | { |
| 458 | return 0; |
| 459 | } |
| 460 | #endif |
| 461 | |
| 462 | |
| 463 | /* |
| 464 | * user-mode helper code |
| 465 | */ |
| 466 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 467 | struct firmware_priv { |
| 468 | bool nowait; |
| 469 | struct device dev; |
| 470 | struct firmware_buf *buf; |
| 471 | struct firmware *fw; |
| 472 | }; |
| 473 | |
| 474 | static struct firmware_priv *to_firmware_priv(struct device *dev) |
| 475 | { |
| 476 | return container_of(dev, struct firmware_priv, dev); |
| 477 | } |
| 478 | |
| 479 | static void __fw_load_abort(struct firmware_buf *buf) |
| 480 | { |
| 481 | /* |
| 482 | * There is a small window in which user can write to 'loading' |
| 483 | * between loading done and disappearance of 'loading' |
| 484 | */ |
| 485 | if (test_bit(FW_STATUS_DONE, &buf->status)) |
| 486 | return; |
| 487 | |
| 488 | list_del_init(&buf->pending_list); |
| 489 | set_bit(FW_STATUS_ABORT, &buf->status); |
| 490 | complete_all(&buf->completion); |
| 491 | } |
| 492 | |
| 493 | static void fw_load_abort(struct firmware_priv *fw_priv) |
| 494 | { |
| 495 | struct firmware_buf *buf = fw_priv->buf; |
| 496 | |
| 497 | __fw_load_abort(buf); |
| 498 | |
| 499 | /* avoid user action after loading abort */ |
| 500 | fw_priv->buf = NULL; |
| 501 | } |
| 502 | |
| 503 | #define is_fw_load_aborted(buf) \ |
| 504 | test_bit(FW_STATUS_ABORT, &(buf)->status) |
| 505 | |
| 506 | static LIST_HEAD(pending_fw_head); |
| 507 | |
| 508 | /* reboot notifier for avoid deadlock with usermode_lock */ |
| 509 | static int fw_shutdown_notify(struct notifier_block *unused1, |
| 510 | unsigned long unused2, void *unused3) |
| 511 | { |
| 512 | mutex_lock(&fw_lock); |
| 513 | while (!list_empty(&pending_fw_head)) |
| 514 | __fw_load_abort(list_first_entry(&pending_fw_head, |
| 515 | struct firmware_buf, |
| 516 | pending_list)); |
| 517 | mutex_unlock(&fw_lock); |
| 518 | return NOTIFY_DONE; |
| 519 | } |
| 520 | |
| 521 | static struct notifier_block fw_shutdown_nb = { |
| 522 | .notifier_call = fw_shutdown_notify, |
| 523 | }; |
| 524 | |
| 525 | static ssize_t timeout_show(struct class *class, struct class_attribute *attr, |
| 526 | char *buf) |
| 527 | { |
| 528 | return sprintf(buf, "%d\n", loading_timeout); |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * firmware_timeout_store - set number of seconds to wait for firmware |
| 533 | * @class: device class pointer |
| 534 | * @attr: device attribute pointer |
| 535 | * @buf: buffer to scan for timeout value |
| 536 | * @count: number of bytes in @buf |
| 537 | * |
| 538 | * Sets the number of seconds to wait for the firmware. Once |
| 539 | * this expires an error will be returned to the driver and no |
| 540 | * firmware will be provided. |
| 541 | * |
| 542 | * Note: zero means 'wait forever'. |
| 543 | **/ |
| 544 | static ssize_t timeout_store(struct class *class, struct class_attribute *attr, |
| 545 | const char *buf, size_t count) |
| 546 | { |
| 547 | loading_timeout = simple_strtol(buf, NULL, 10); |
| 548 | if (loading_timeout < 0) |
| 549 | loading_timeout = 0; |
| 550 | |
| 551 | return count; |
| 552 | } |
| 553 | |
| 554 | static struct class_attribute firmware_class_attrs[] = { |
| 555 | __ATTR_RW(timeout), |
| 556 | __ATTR_NULL |
| 557 | }; |
| 558 | |
| 559 | static void fw_dev_release(struct device *dev) |
| 560 | { |
| 561 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 562 | |
| 563 | kfree(fw_priv); |
| 564 | } |
| 565 | |
| 566 | static int do_firmware_uevent(struct firmware_priv *fw_priv, struct kobj_uevent_env *env) |
| 567 | { |
| 568 | if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id)) |
| 569 | return -ENOMEM; |
| 570 | if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout)) |
| 571 | return -ENOMEM; |
| 572 | if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait)) |
| 573 | return -ENOMEM; |
| 574 | |
| 575 | return 0; |
| 576 | } |
| 577 | |
| 578 | static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 579 | { |
| 580 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 581 | int err = 0; |
| 582 | |
| 583 | mutex_lock(&fw_lock); |
| 584 | if (fw_priv->buf) |
| 585 | err = do_firmware_uevent(fw_priv, env); |
| 586 | mutex_unlock(&fw_lock); |
| 587 | return err; |
| 588 | } |
| 589 | |
| 590 | static struct class firmware_class = { |
| 591 | .name = "firmware", |
| 592 | .class_attrs = firmware_class_attrs, |
| 593 | .dev_uevent = firmware_uevent, |
| 594 | .dev_release = fw_dev_release, |
| 595 | }; |
| 596 | |
| 597 | static ssize_t firmware_loading_show(struct device *dev, |
| 598 | struct device_attribute *attr, char *buf) |
| 599 | { |
| 600 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 601 | int loading = 0; |
| 602 | |
| 603 | mutex_lock(&fw_lock); |
| 604 | if (fw_priv->buf) |
| 605 | loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status); |
| 606 | mutex_unlock(&fw_lock); |
| 607 | |
| 608 | return sprintf(buf, "%d\n", loading); |
| 609 | } |
| 610 | |
| 611 | /* Some architectures don't have PAGE_KERNEL_RO */ |
| 612 | #ifndef PAGE_KERNEL_RO |
| 613 | #define PAGE_KERNEL_RO PAGE_KERNEL |
| 614 | #endif |
| 615 | |
| 616 | /* one pages buffer should be mapped/unmapped only once */ |
| 617 | static int fw_map_pages_buf(struct firmware_buf *buf) |
| 618 | { |
| 619 | if (!buf->is_paged_buf) |
| 620 | return 0; |
| 621 | |
| 622 | vunmap(buf->data); |
| 623 | buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO); |
| 624 | if (!buf->data) |
| 625 | return -ENOMEM; |
| 626 | return 0; |
| 627 | } |
| 628 | |
| 629 | /** |
| 630 | * firmware_loading_store - set value in the 'loading' control file |
| 631 | * @dev: device pointer |
| 632 | * @attr: device attribute pointer |
| 633 | * @buf: buffer to scan for loading control value |
| 634 | * @count: number of bytes in @buf |
| 635 | * |
| 636 | * The relevant values are: |
| 637 | * |
| 638 | * 1: Start a load, discarding any previous partial load. |
| 639 | * 0: Conclude the load and hand the data to the driver code. |
| 640 | * -1: Conclude the load with an error and discard any written data. |
| 641 | **/ |
| 642 | static ssize_t firmware_loading_store(struct device *dev, |
| 643 | struct device_attribute *attr, |
| 644 | const char *buf, size_t count) |
| 645 | { |
| 646 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 647 | struct firmware_buf *fw_buf; |
| 648 | ssize_t written = count; |
| 649 | int loading = simple_strtol(buf, NULL, 10); |
| 650 | int i; |
| 651 | |
| 652 | mutex_lock(&fw_lock); |
| 653 | fw_buf = fw_priv->buf; |
| 654 | if (!fw_buf) |
| 655 | goto out; |
| 656 | |
| 657 | switch (loading) { |
| 658 | case 1: |
| 659 | /* discarding any previous partial load */ |
| 660 | if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) { |
| 661 | for (i = 0; i < fw_buf->nr_pages; i++) |
| 662 | __free_page(fw_buf->pages[i]); |
| 663 | kfree(fw_buf->pages); |
| 664 | fw_buf->pages = NULL; |
| 665 | fw_buf->page_array_size = 0; |
| 666 | fw_buf->nr_pages = 0; |
| 667 | set_bit(FW_STATUS_LOADING, &fw_buf->status); |
| 668 | } |
| 669 | break; |
| 670 | case 0: |
| 671 | if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) { |
| 672 | int rc; |
| 673 | |
| 674 | set_bit(FW_STATUS_DONE, &fw_buf->status); |
| 675 | clear_bit(FW_STATUS_LOADING, &fw_buf->status); |
| 676 | |
| 677 | /* |
| 678 | * Several loading requests may be pending on |
| 679 | * one same firmware buf, so let all requests |
| 680 | * see the mapped 'buf->data' once the loading |
| 681 | * is completed. |
| 682 | * */ |
| 683 | rc = fw_map_pages_buf(fw_buf); |
| 684 | if (rc) |
| 685 | dev_err(dev, "%s: map pages failed\n", |
| 686 | __func__); |
| 687 | else |
| 688 | rc = security_kernel_fw_from_file(NULL, |
| 689 | fw_buf->data, fw_buf->size); |
| 690 | |
| 691 | /* |
| 692 | * Same logic as fw_load_abort, only the DONE bit |
| 693 | * is ignored and we set ABORT only on failure. |
| 694 | */ |
| 695 | list_del_init(&fw_buf->pending_list); |
| 696 | if (rc) { |
| 697 | set_bit(FW_STATUS_ABORT, &fw_buf->status); |
| 698 | written = rc; |
| 699 | } |
| 700 | complete_all(&fw_buf->completion); |
| 701 | break; |
| 702 | } |
| 703 | /* fallthrough */ |
| 704 | default: |
| 705 | dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading); |
| 706 | /* fallthrough */ |
| 707 | case -1: |
| 708 | fw_load_abort(fw_priv); |
| 709 | break; |
| 710 | } |
| 711 | out: |
| 712 | mutex_unlock(&fw_lock); |
| 713 | return written; |
| 714 | } |
| 715 | |
| 716 | static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store); |
| 717 | |
| 718 | static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj, |
| 719 | struct bin_attribute *bin_attr, |
| 720 | char *buffer, loff_t offset, size_t count) |
| 721 | { |
| 722 | struct device *dev = kobj_to_dev(kobj); |
| 723 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 724 | struct firmware_buf *buf; |
| 725 | ssize_t ret_count; |
| 726 | |
| 727 | mutex_lock(&fw_lock); |
| 728 | buf = fw_priv->buf; |
| 729 | if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) { |
| 730 | ret_count = -ENODEV; |
| 731 | goto out; |
| 732 | } |
| 733 | if (offset > buf->size) { |
| 734 | ret_count = 0; |
| 735 | goto out; |
| 736 | } |
| 737 | if (count > buf->size - offset) |
| 738 | count = buf->size - offset; |
| 739 | |
| 740 | ret_count = count; |
| 741 | |
| 742 | while (count) { |
| 743 | void *page_data; |
| 744 | int page_nr = offset >> PAGE_SHIFT; |
| 745 | int page_ofs = offset & (PAGE_SIZE-1); |
| 746 | int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count); |
| 747 | |
| 748 | page_data = kmap(buf->pages[page_nr]); |
| 749 | |
| 750 | memcpy(buffer, page_data + page_ofs, page_cnt); |
| 751 | |
| 752 | kunmap(buf->pages[page_nr]); |
| 753 | buffer += page_cnt; |
| 754 | offset += page_cnt; |
| 755 | count -= page_cnt; |
| 756 | } |
| 757 | out: |
| 758 | mutex_unlock(&fw_lock); |
| 759 | return ret_count; |
| 760 | } |
| 761 | |
| 762 | static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size) |
| 763 | { |
| 764 | struct firmware_buf *buf = fw_priv->buf; |
| 765 | int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT; |
| 766 | |
| 767 | /* If the array of pages is too small, grow it... */ |
| 768 | if (buf->page_array_size < pages_needed) { |
| 769 | int new_array_size = max(pages_needed, |
| 770 | buf->page_array_size * 2); |
| 771 | struct page **new_pages; |
| 772 | |
| 773 | new_pages = kmalloc(new_array_size * sizeof(void *), |
| 774 | GFP_KERNEL); |
| 775 | if (!new_pages) { |
| 776 | fw_load_abort(fw_priv); |
| 777 | return -ENOMEM; |
| 778 | } |
| 779 | memcpy(new_pages, buf->pages, |
| 780 | buf->page_array_size * sizeof(void *)); |
| 781 | memset(&new_pages[buf->page_array_size], 0, sizeof(void *) * |
| 782 | (new_array_size - buf->page_array_size)); |
| 783 | kfree(buf->pages); |
| 784 | buf->pages = new_pages; |
| 785 | buf->page_array_size = new_array_size; |
| 786 | } |
| 787 | |
| 788 | while (buf->nr_pages < pages_needed) { |
| 789 | buf->pages[buf->nr_pages] = |
| 790 | alloc_page(GFP_KERNEL | __GFP_HIGHMEM); |
| 791 | |
| 792 | if (!buf->pages[buf->nr_pages]) { |
| 793 | fw_load_abort(fw_priv); |
| 794 | return -ENOMEM; |
| 795 | } |
| 796 | buf->nr_pages++; |
| 797 | } |
| 798 | return 0; |
| 799 | } |
| 800 | |
| 801 | /** |
| 802 | * firmware_data_write - write method for firmware |
| 803 | * @filp: open sysfs file |
| 804 | * @kobj: kobject for the device |
| 805 | * @bin_attr: bin_attr structure |
| 806 | * @buffer: buffer being written |
| 807 | * @offset: buffer offset for write in total data store area |
| 808 | * @count: buffer size |
| 809 | * |
| 810 | * Data written to the 'data' attribute will be later handed to |
| 811 | * the driver as a firmware image. |
| 812 | **/ |
| 813 | static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj, |
| 814 | struct bin_attribute *bin_attr, |
| 815 | char *buffer, loff_t offset, size_t count) |
| 816 | { |
| 817 | struct device *dev = kobj_to_dev(kobj); |
| 818 | struct firmware_priv *fw_priv = to_firmware_priv(dev); |
| 819 | struct firmware_buf *buf; |
| 820 | ssize_t retval; |
| 821 | |
| 822 | if (!capable(CAP_SYS_RAWIO)) |
| 823 | return -EPERM; |
| 824 | |
| 825 | mutex_lock(&fw_lock); |
| 826 | buf = fw_priv->buf; |
| 827 | if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) { |
| 828 | retval = -ENODEV; |
| 829 | goto out; |
| 830 | } |
| 831 | |
| 832 | retval = fw_realloc_buffer(fw_priv, offset + count); |
| 833 | if (retval) |
| 834 | goto out; |
| 835 | |
| 836 | retval = count; |
| 837 | |
| 838 | while (count) { |
| 839 | void *page_data; |
| 840 | int page_nr = offset >> PAGE_SHIFT; |
| 841 | int page_ofs = offset & (PAGE_SIZE - 1); |
| 842 | int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count); |
| 843 | |
| 844 | page_data = kmap(buf->pages[page_nr]); |
| 845 | |
| 846 | memcpy(page_data + page_ofs, buffer, page_cnt); |
| 847 | |
| 848 | kunmap(buf->pages[page_nr]); |
| 849 | buffer += page_cnt; |
| 850 | offset += page_cnt; |
| 851 | count -= page_cnt; |
| 852 | } |
| 853 | |
| 854 | buf->size = max_t(size_t, offset, buf->size); |
| 855 | out: |
| 856 | mutex_unlock(&fw_lock); |
| 857 | return retval; |
| 858 | } |
| 859 | |
| 860 | static struct bin_attribute firmware_attr_data = { |
| 861 | .attr = { .name = "data", .mode = 0644 }, |
| 862 | .size = 0, |
| 863 | .read = firmware_data_read, |
| 864 | .write = firmware_data_write, |
| 865 | }; |
| 866 | |
| 867 | static struct attribute *fw_dev_attrs[] = { |
| 868 | &dev_attr_loading.attr, |
| 869 | NULL |
| 870 | }; |
| 871 | |
| 872 | static struct bin_attribute *fw_dev_bin_attrs[] = { |
| 873 | &firmware_attr_data, |
| 874 | NULL |
| 875 | }; |
| 876 | |
| 877 | static const struct attribute_group fw_dev_attr_group = { |
| 878 | .attrs = fw_dev_attrs, |
| 879 | .bin_attrs = fw_dev_bin_attrs, |
| 880 | }; |
| 881 | |
| 882 | static const struct attribute_group *fw_dev_attr_groups[] = { |
| 883 | &fw_dev_attr_group, |
| 884 | NULL |
| 885 | }; |
| 886 | |
| 887 | static struct firmware_priv * |
| 888 | fw_create_instance(struct firmware *firmware, const char *fw_name, |
| 889 | struct device *device, unsigned int opt_flags) |
| 890 | { |
| 891 | struct firmware_priv *fw_priv; |
| 892 | struct device *f_dev; |
| 893 | |
| 894 | fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL); |
| 895 | if (!fw_priv) { |
| 896 | fw_priv = ERR_PTR(-ENOMEM); |
| 897 | goto exit; |
| 898 | } |
| 899 | |
| 900 | fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT); |
| 901 | fw_priv->fw = firmware; |
| 902 | f_dev = &fw_priv->dev; |
| 903 | |
| 904 | device_initialize(f_dev); |
| 905 | dev_set_name(f_dev, "%s", fw_name); |
| 906 | f_dev->parent = device; |
| 907 | f_dev->class = &firmware_class; |
| 908 | f_dev->groups = fw_dev_attr_groups; |
| 909 | exit: |
| 910 | return fw_priv; |
| 911 | } |
| 912 | |
| 913 | /* load a firmware via user helper */ |
| 914 | static int _request_firmware_load(struct firmware_priv *fw_priv, |
| 915 | unsigned int opt_flags, long timeout) |
| 916 | { |
| 917 | int retval = 0; |
| 918 | struct device *f_dev = &fw_priv->dev; |
| 919 | struct firmware_buf *buf = fw_priv->buf; |
| 920 | |
| 921 | /* fall back on userspace loading */ |
| 922 | buf->is_paged_buf = true; |
| 923 | |
| 924 | dev_set_uevent_suppress(f_dev, true); |
| 925 | |
| 926 | retval = device_add(f_dev); |
| 927 | if (retval) { |
| 928 | dev_err(f_dev, "%s: device_register failed\n", __func__); |
| 929 | goto err_put_dev; |
| 930 | } |
| 931 | |
| 932 | mutex_lock(&fw_lock); |
| 933 | list_add(&buf->pending_list, &pending_fw_head); |
| 934 | mutex_unlock(&fw_lock); |
| 935 | |
| 936 | if (opt_flags & FW_OPT_UEVENT) { |
| 937 | buf->need_uevent = true; |
| 938 | dev_set_uevent_suppress(f_dev, false); |
| 939 | dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id); |
| 940 | kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD); |
| 941 | } else { |
| 942 | timeout = MAX_JIFFY_OFFSET; |
| 943 | } |
| 944 | |
| 945 | timeout = wait_for_completion_interruptible_timeout(&buf->completion, |
| 946 | timeout); |
| 947 | if (timeout == -ERESTARTSYS || !timeout) { |
| 948 | retval = timeout; |
| 949 | mutex_lock(&fw_lock); |
| 950 | fw_load_abort(fw_priv); |
| 951 | mutex_unlock(&fw_lock); |
| 952 | } else if (timeout > 0) { |
| 953 | retval = 0; |
| 954 | } |
| 955 | |
| 956 | if (is_fw_load_aborted(buf)) |
| 957 | retval = -EAGAIN; |
| 958 | else if (!buf->data) |
| 959 | retval = -ENOMEM; |
| 960 | |
| 961 | device_del(f_dev); |
| 962 | err_put_dev: |
| 963 | put_device(f_dev); |
| 964 | return retval; |
| 965 | } |
| 966 | |
| 967 | static int fw_load_from_user_helper(struct firmware *firmware, |
| 968 | const char *name, struct device *device, |
| 969 | unsigned int opt_flags, long timeout) |
| 970 | { |
| 971 | struct firmware_priv *fw_priv; |
| 972 | |
| 973 | fw_priv = fw_create_instance(firmware, name, device, opt_flags); |
| 974 | if (IS_ERR(fw_priv)) |
| 975 | return PTR_ERR(fw_priv); |
| 976 | |
| 977 | fw_priv->buf = firmware->priv; |
| 978 | return _request_firmware_load(fw_priv, opt_flags, timeout); |
| 979 | } |
| 980 | |
| 981 | #ifdef CONFIG_PM_SLEEP |
| 982 | /* kill pending requests without uevent to avoid blocking suspend */ |
| 983 | static void kill_requests_without_uevent(void) |
| 984 | { |
| 985 | struct firmware_buf *buf; |
| 986 | struct firmware_buf *next; |
| 987 | |
| 988 | mutex_lock(&fw_lock); |
| 989 | list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) { |
| 990 | if (!buf->need_uevent) |
| 991 | __fw_load_abort(buf); |
| 992 | } |
| 993 | mutex_unlock(&fw_lock); |
| 994 | } |
| 995 | #endif |
| 996 | |
| 997 | #else /* CONFIG_FW_LOADER_USER_HELPER */ |
| 998 | static inline int |
| 999 | fw_load_from_user_helper(struct firmware *firmware, const char *name, |
| 1000 | struct device *device, unsigned int opt_flags, |
| 1001 | long timeout) |
| 1002 | { |
| 1003 | return -ENOENT; |
| 1004 | } |
| 1005 | |
| 1006 | /* No abort during direct loading */ |
| 1007 | #define is_fw_load_aborted(buf) false |
| 1008 | |
| 1009 | #ifdef CONFIG_PM_SLEEP |
| 1010 | static inline void kill_requests_without_uevent(void) { } |
| 1011 | #endif |
| 1012 | |
| 1013 | #endif /* CONFIG_FW_LOADER_USER_HELPER */ |
| 1014 | |
| 1015 | |
| 1016 | /* wait until the shared firmware_buf becomes ready (or error) */ |
| 1017 | static int sync_cached_firmware_buf(struct firmware_buf *buf) |
| 1018 | { |
| 1019 | int ret = 0; |
| 1020 | |
| 1021 | mutex_lock(&fw_lock); |
| 1022 | while (!test_bit(FW_STATUS_DONE, &buf->status)) { |
| 1023 | if (is_fw_load_aborted(buf)) { |
| 1024 | ret = -ENOENT; |
| 1025 | break; |
| 1026 | } |
| 1027 | mutex_unlock(&fw_lock); |
| 1028 | ret = wait_for_completion_interruptible(&buf->completion); |
| 1029 | mutex_lock(&fw_lock); |
| 1030 | } |
| 1031 | mutex_unlock(&fw_lock); |
| 1032 | return ret; |
| 1033 | } |
| 1034 | |
| 1035 | /* prepare firmware and firmware_buf structs; |
| 1036 | * return 0 if a firmware is already assigned, 1 if need to load one, |
| 1037 | * or a negative error code |
| 1038 | */ |
| 1039 | static int |
| 1040 | _request_firmware_prepare(struct firmware **firmware_p, const char *name, |
| 1041 | struct device *device) |
| 1042 | { |
| 1043 | struct firmware *firmware; |
| 1044 | struct firmware_buf *buf; |
| 1045 | int ret; |
| 1046 | |
| 1047 | *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL); |
| 1048 | if (!firmware) { |
| 1049 | dev_err(device, "%s: kmalloc(struct firmware) failed\n", |
| 1050 | __func__); |
| 1051 | return -ENOMEM; |
| 1052 | } |
| 1053 | |
| 1054 | if (fw_get_builtin_firmware(firmware, name)) { |
| 1055 | dev_dbg(device, "firmware: using built-in firmware %s\n", name); |
| 1056 | return 0; /* assigned */ |
| 1057 | } |
| 1058 | |
| 1059 | ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf); |
| 1060 | |
| 1061 | /* |
| 1062 | * bind with 'buf' now to avoid warning in failure path |
| 1063 | * of requesting firmware. |
| 1064 | */ |
| 1065 | firmware->priv = buf; |
| 1066 | |
| 1067 | if (ret > 0) { |
| 1068 | ret = sync_cached_firmware_buf(buf); |
| 1069 | if (!ret) { |
| 1070 | fw_set_page_data(buf, firmware); |
| 1071 | return 0; /* assigned */ |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | if (ret < 0) |
| 1076 | return ret; |
| 1077 | return 1; /* need to load */ |
| 1078 | } |
| 1079 | |
| 1080 | static int assign_firmware_buf(struct firmware *fw, struct device *device, |
| 1081 | unsigned int opt_flags) |
| 1082 | { |
| 1083 | struct firmware_buf *buf = fw->priv; |
| 1084 | |
| 1085 | mutex_lock(&fw_lock); |
| 1086 | if (!buf->size || is_fw_load_aborted(buf)) { |
| 1087 | mutex_unlock(&fw_lock); |
| 1088 | return -ENOENT; |
| 1089 | } |
| 1090 | |
| 1091 | /* |
| 1092 | * add firmware name into devres list so that we can auto cache |
| 1093 | * and uncache firmware for device. |
| 1094 | * |
| 1095 | * device may has been deleted already, but the problem |
| 1096 | * should be fixed in devres or driver core. |
| 1097 | */ |
| 1098 | /* don't cache firmware handled without uevent */ |
| 1099 | if (device && (opt_flags & FW_OPT_UEVENT)) |
| 1100 | fw_add_devm_name(device, buf->fw_id); |
| 1101 | |
| 1102 | /* |
| 1103 | * After caching firmware image is started, let it piggyback |
| 1104 | * on request firmware. |
| 1105 | */ |
| 1106 | if (buf->fwc->state == FW_LOADER_START_CACHE) { |
| 1107 | if (fw_cache_piggyback_on_request(buf->fw_id)) |
| 1108 | kref_get(&buf->ref); |
| 1109 | } |
| 1110 | |
| 1111 | /* pass the pages buffer to driver at the last minute */ |
| 1112 | fw_set_page_data(buf, fw); |
| 1113 | mutex_unlock(&fw_lock); |
| 1114 | return 0; |
| 1115 | } |
| 1116 | |
| 1117 | /* called from request_firmware() and request_firmware_work_func() */ |
| 1118 | static int |
| 1119 | _request_firmware(const struct firmware **firmware_p, const char *name, |
| 1120 | struct device *device, unsigned int opt_flags) |
| 1121 | { |
| 1122 | struct firmware *fw; |
| 1123 | long timeout; |
| 1124 | int ret; |
| 1125 | |
| 1126 | if (!firmware_p) |
| 1127 | return -EINVAL; |
| 1128 | |
| 1129 | if (!name || name[0] == '\0') |
| 1130 | return -EINVAL; |
| 1131 | |
| 1132 | ret = _request_firmware_prepare(&fw, name, device); |
| 1133 | if (ret <= 0) /* error or already assigned */ |
| 1134 | goto out; |
| 1135 | |
| 1136 | ret = 0; |
| 1137 | timeout = firmware_loading_timeout(); |
| 1138 | if (opt_flags & FW_OPT_NOWAIT) { |
| 1139 | timeout = usermodehelper_read_lock_wait(timeout); |
| 1140 | if (!timeout) { |
| 1141 | dev_dbg(device, "firmware: %s loading timed out\n", |
| 1142 | name); |
| 1143 | ret = -EBUSY; |
| 1144 | goto out; |
| 1145 | } |
| 1146 | } else { |
| 1147 | ret = usermodehelper_read_trylock(); |
| 1148 | if (WARN_ON(ret)) { |
| 1149 | dev_err(device, "firmware: %s will not be loaded\n", |
| 1150 | name); |
| 1151 | goto out; |
| 1152 | } |
| 1153 | } |
| 1154 | |
| 1155 | ret = fw_get_filesystem_firmware(device, fw->priv); |
| 1156 | if (ret) { |
| 1157 | if (!(opt_flags & FW_OPT_NO_WARN)) |
| 1158 | dev_warn(device, |
| 1159 | "Direct firmware load for %s failed with error %d\n", |
| 1160 | name, ret); |
| 1161 | if (opt_flags & FW_OPT_USERHELPER) { |
| 1162 | dev_warn(device, "Falling back to user helper\n"); |
| 1163 | ret = fw_load_from_user_helper(fw, name, device, |
| 1164 | opt_flags, timeout); |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | if (!ret) |
| 1169 | ret = assign_firmware_buf(fw, device, opt_flags); |
| 1170 | |
| 1171 | usermodehelper_read_unlock(); |
| 1172 | |
| 1173 | out: |
| 1174 | if (ret < 0) { |
| 1175 | release_firmware(fw); |
| 1176 | fw = NULL; |
| 1177 | } |
| 1178 | |
| 1179 | *firmware_p = fw; |
| 1180 | return ret; |
| 1181 | } |
| 1182 | |
| 1183 | /** |
| 1184 | * request_firmware: - send firmware request and wait for it |
| 1185 | * @firmware_p: pointer to firmware image |
| 1186 | * @name: name of firmware file |
| 1187 | * @device: device for which firmware is being loaded |
| 1188 | * |
| 1189 | * @firmware_p will be used to return a firmware image by the name |
| 1190 | * of @name for device @device. |
| 1191 | * |
| 1192 | * Should be called from user context where sleeping is allowed. |
| 1193 | * |
| 1194 | * @name will be used as $FIRMWARE in the uevent environment and |
| 1195 | * should be distinctive enough not to be confused with any other |
| 1196 | * firmware image for this or any other device. |
| 1197 | * |
| 1198 | * Caller must hold the reference count of @device. |
| 1199 | * |
| 1200 | * The function can be called safely inside device's suspend and |
| 1201 | * resume callback. |
| 1202 | **/ |
| 1203 | int |
| 1204 | request_firmware(const struct firmware **firmware_p, const char *name, |
| 1205 | struct device *device) |
| 1206 | { |
| 1207 | int ret; |
| 1208 | |
| 1209 | /* Need to pin this module until return */ |
| 1210 | __module_get(THIS_MODULE); |
| 1211 | ret = _request_firmware(firmware_p, name, device, |
| 1212 | FW_OPT_UEVENT | FW_OPT_FALLBACK); |
| 1213 | module_put(THIS_MODULE); |
| 1214 | return ret; |
| 1215 | } |
| 1216 | EXPORT_SYMBOL(request_firmware); |
| 1217 | |
| 1218 | /** |
| 1219 | * request_firmware_direct: - load firmware directly without usermode helper |
| 1220 | * @firmware_p: pointer to firmware image |
| 1221 | * @name: name of firmware file |
| 1222 | * @device: device for which firmware is being loaded |
| 1223 | * |
| 1224 | * This function works pretty much like request_firmware(), but this doesn't |
| 1225 | * fall back to usermode helper even if the firmware couldn't be loaded |
| 1226 | * directly from fs. Hence it's useful for loading optional firmwares, which |
| 1227 | * aren't always present, without extra long timeouts of udev. |
| 1228 | **/ |
| 1229 | int request_firmware_direct(const struct firmware **firmware_p, |
| 1230 | const char *name, struct device *device) |
| 1231 | { |
| 1232 | int ret; |
| 1233 | |
| 1234 | __module_get(THIS_MODULE); |
| 1235 | ret = _request_firmware(firmware_p, name, device, |
| 1236 | FW_OPT_UEVENT | FW_OPT_NO_WARN); |
| 1237 | module_put(THIS_MODULE); |
| 1238 | return ret; |
| 1239 | } |
| 1240 | EXPORT_SYMBOL_GPL(request_firmware_direct); |
| 1241 | |
| 1242 | /** |
| 1243 | * release_firmware: - release the resource associated with a firmware image |
| 1244 | * @fw: firmware resource to release |
| 1245 | **/ |
| 1246 | void release_firmware(const struct firmware *fw) |
| 1247 | { |
| 1248 | if (fw) { |
| 1249 | if (!fw_is_builtin_firmware(fw)) |
| 1250 | firmware_free_data(fw); |
| 1251 | kfree(fw); |
| 1252 | } |
| 1253 | } |
| 1254 | EXPORT_SYMBOL(release_firmware); |
| 1255 | |
| 1256 | /* Async support */ |
| 1257 | struct firmware_work { |
| 1258 | struct work_struct work; |
| 1259 | struct module *module; |
| 1260 | const char *name; |
| 1261 | struct device *device; |
| 1262 | void *context; |
| 1263 | void (*cont)(const struct firmware *fw, void *context); |
| 1264 | unsigned int opt_flags; |
| 1265 | }; |
| 1266 | |
| 1267 | static void request_firmware_work_func(struct work_struct *work) |
| 1268 | { |
| 1269 | struct firmware_work *fw_work; |
| 1270 | const struct firmware *fw; |
| 1271 | |
| 1272 | fw_work = container_of(work, struct firmware_work, work); |
| 1273 | |
| 1274 | _request_firmware(&fw, fw_work->name, fw_work->device, |
| 1275 | fw_work->opt_flags); |
| 1276 | fw_work->cont(fw, fw_work->context); |
| 1277 | put_device(fw_work->device); /* taken in request_firmware_nowait() */ |
| 1278 | |
| 1279 | module_put(fw_work->module); |
| 1280 | kfree_const(fw_work->name); |
| 1281 | kfree(fw_work); |
| 1282 | } |
| 1283 | |
| 1284 | /** |
| 1285 | * request_firmware_nowait - asynchronous version of request_firmware |
| 1286 | * @module: module requesting the firmware |
| 1287 | * @uevent: sends uevent to copy the firmware image if this flag |
| 1288 | * is non-zero else the firmware copy must be done manually. |
| 1289 | * @name: name of firmware file |
| 1290 | * @device: device for which firmware is being loaded |
| 1291 | * @gfp: allocation flags |
| 1292 | * @context: will be passed over to @cont, and |
| 1293 | * @fw may be %NULL if firmware request fails. |
| 1294 | * @cont: function will be called asynchronously when the firmware |
| 1295 | * request is over. |
| 1296 | * |
| 1297 | * Caller must hold the reference count of @device. |
| 1298 | * |
| 1299 | * Asynchronous variant of request_firmware() for user contexts: |
| 1300 | * - sleep for as small periods as possible since it may |
| 1301 | * increase kernel boot time of built-in device drivers |
| 1302 | * requesting firmware in their ->probe() methods, if |
| 1303 | * @gfp is GFP_KERNEL. |
| 1304 | * |
| 1305 | * - can't sleep at all if @gfp is GFP_ATOMIC. |
| 1306 | **/ |
| 1307 | int |
| 1308 | request_firmware_nowait( |
| 1309 | struct module *module, bool uevent, |
| 1310 | const char *name, struct device *device, gfp_t gfp, void *context, |
| 1311 | void (*cont)(const struct firmware *fw, void *context)) |
| 1312 | { |
| 1313 | struct firmware_work *fw_work; |
| 1314 | |
| 1315 | fw_work = kzalloc(sizeof(struct firmware_work), gfp); |
| 1316 | if (!fw_work) |
| 1317 | return -ENOMEM; |
| 1318 | |
| 1319 | fw_work->module = module; |
| 1320 | fw_work->name = kstrdup_const(name, gfp); |
| 1321 | if (!fw_work->name) { |
| 1322 | kfree(fw_work); |
| 1323 | return -ENOMEM; |
| 1324 | } |
| 1325 | fw_work->device = device; |
| 1326 | fw_work->context = context; |
| 1327 | fw_work->cont = cont; |
| 1328 | fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK | |
| 1329 | (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER); |
| 1330 | |
| 1331 | if (!try_module_get(module)) { |
| 1332 | kfree_const(fw_work->name); |
| 1333 | kfree(fw_work); |
| 1334 | return -EFAULT; |
| 1335 | } |
| 1336 | |
| 1337 | get_device(fw_work->device); |
| 1338 | INIT_WORK(&fw_work->work, request_firmware_work_func); |
| 1339 | schedule_work(&fw_work->work); |
| 1340 | return 0; |
| 1341 | } |
| 1342 | EXPORT_SYMBOL(request_firmware_nowait); |
| 1343 | |
| 1344 | #ifdef CONFIG_PM_SLEEP |
| 1345 | static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain); |
| 1346 | |
| 1347 | /** |
| 1348 | * cache_firmware - cache one firmware image in kernel memory space |
| 1349 | * @fw_name: the firmware image name |
| 1350 | * |
| 1351 | * Cache firmware in kernel memory so that drivers can use it when |
| 1352 | * system isn't ready for them to request firmware image from userspace. |
| 1353 | * Once it returns successfully, driver can use request_firmware or its |
| 1354 | * nowait version to get the cached firmware without any interacting |
| 1355 | * with userspace |
| 1356 | * |
| 1357 | * Return 0 if the firmware image has been cached successfully |
| 1358 | * Return !0 otherwise |
| 1359 | * |
| 1360 | */ |
| 1361 | static int cache_firmware(const char *fw_name) |
| 1362 | { |
| 1363 | int ret; |
| 1364 | const struct firmware *fw; |
| 1365 | |
| 1366 | pr_debug("%s: %s\n", __func__, fw_name); |
| 1367 | |
| 1368 | ret = request_firmware(&fw, fw_name, NULL); |
| 1369 | if (!ret) |
| 1370 | kfree(fw); |
| 1371 | |
| 1372 | pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret); |
| 1373 | |
| 1374 | return ret; |
| 1375 | } |
| 1376 | |
| 1377 | static struct firmware_buf *fw_lookup_buf(const char *fw_name) |
| 1378 | { |
| 1379 | struct firmware_buf *tmp; |
| 1380 | struct firmware_cache *fwc = &fw_cache; |
| 1381 | |
| 1382 | spin_lock(&fwc->lock); |
| 1383 | tmp = __fw_lookup_buf(fw_name); |
| 1384 | spin_unlock(&fwc->lock); |
| 1385 | |
| 1386 | return tmp; |
| 1387 | } |
| 1388 | |
| 1389 | /** |
| 1390 | * uncache_firmware - remove one cached firmware image |
| 1391 | * @fw_name: the firmware image name |
| 1392 | * |
| 1393 | * Uncache one firmware image which has been cached successfully |
| 1394 | * before. |
| 1395 | * |
| 1396 | * Return 0 if the firmware cache has been removed successfully |
| 1397 | * Return !0 otherwise |
| 1398 | * |
| 1399 | */ |
| 1400 | static int uncache_firmware(const char *fw_name) |
| 1401 | { |
| 1402 | struct firmware_buf *buf; |
| 1403 | struct firmware fw; |
| 1404 | |
| 1405 | pr_debug("%s: %s\n", __func__, fw_name); |
| 1406 | |
| 1407 | if (fw_get_builtin_firmware(&fw, fw_name)) |
| 1408 | return 0; |
| 1409 | |
| 1410 | buf = fw_lookup_buf(fw_name); |
| 1411 | if (buf) { |
| 1412 | fw_free_buf(buf); |
| 1413 | return 0; |
| 1414 | } |
| 1415 | |
| 1416 | return -EINVAL; |
| 1417 | } |
| 1418 | |
| 1419 | static struct fw_cache_entry *alloc_fw_cache_entry(const char *name) |
| 1420 | { |
| 1421 | struct fw_cache_entry *fce; |
| 1422 | |
| 1423 | fce = kzalloc(sizeof(*fce), GFP_ATOMIC); |
| 1424 | if (!fce) |
| 1425 | goto exit; |
| 1426 | |
| 1427 | fce->name = kstrdup_const(name, GFP_ATOMIC); |
| 1428 | if (!fce->name) { |
| 1429 | kfree(fce); |
| 1430 | fce = NULL; |
| 1431 | goto exit; |
| 1432 | } |
| 1433 | exit: |
| 1434 | return fce; |
| 1435 | } |
| 1436 | |
| 1437 | static int __fw_entry_found(const char *name) |
| 1438 | { |
| 1439 | struct firmware_cache *fwc = &fw_cache; |
| 1440 | struct fw_cache_entry *fce; |
| 1441 | |
| 1442 | list_for_each_entry(fce, &fwc->fw_names, list) { |
| 1443 | if (!strcmp(fce->name, name)) |
| 1444 | return 1; |
| 1445 | } |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
| 1449 | static int fw_cache_piggyback_on_request(const char *name) |
| 1450 | { |
| 1451 | struct firmware_cache *fwc = &fw_cache; |
| 1452 | struct fw_cache_entry *fce; |
| 1453 | int ret = 0; |
| 1454 | |
| 1455 | spin_lock(&fwc->name_lock); |
| 1456 | if (__fw_entry_found(name)) |
| 1457 | goto found; |
| 1458 | |
| 1459 | fce = alloc_fw_cache_entry(name); |
| 1460 | if (fce) { |
| 1461 | ret = 1; |
| 1462 | list_add(&fce->list, &fwc->fw_names); |
| 1463 | pr_debug("%s: fw: %s\n", __func__, name); |
| 1464 | } |
| 1465 | found: |
| 1466 | spin_unlock(&fwc->name_lock); |
| 1467 | return ret; |
| 1468 | } |
| 1469 | |
| 1470 | static void free_fw_cache_entry(struct fw_cache_entry *fce) |
| 1471 | { |
| 1472 | kfree_const(fce->name); |
| 1473 | kfree(fce); |
| 1474 | } |
| 1475 | |
| 1476 | static void __async_dev_cache_fw_image(void *fw_entry, |
| 1477 | async_cookie_t cookie) |
| 1478 | { |
| 1479 | struct fw_cache_entry *fce = fw_entry; |
| 1480 | struct firmware_cache *fwc = &fw_cache; |
| 1481 | int ret; |
| 1482 | |
| 1483 | ret = cache_firmware(fce->name); |
| 1484 | if (ret) { |
| 1485 | spin_lock(&fwc->name_lock); |
| 1486 | list_del(&fce->list); |
| 1487 | spin_unlock(&fwc->name_lock); |
| 1488 | |
| 1489 | free_fw_cache_entry(fce); |
| 1490 | } |
| 1491 | } |
| 1492 | |
| 1493 | /* called with dev->devres_lock held */ |
| 1494 | static void dev_create_fw_entry(struct device *dev, void *res, |
| 1495 | void *data) |
| 1496 | { |
| 1497 | struct fw_name_devm *fwn = res; |
| 1498 | const char *fw_name = fwn->name; |
| 1499 | struct list_head *head = data; |
| 1500 | struct fw_cache_entry *fce; |
| 1501 | |
| 1502 | fce = alloc_fw_cache_entry(fw_name); |
| 1503 | if (fce) |
| 1504 | list_add(&fce->list, head); |
| 1505 | } |
| 1506 | |
| 1507 | static int devm_name_match(struct device *dev, void *res, |
| 1508 | void *match_data) |
| 1509 | { |
| 1510 | struct fw_name_devm *fwn = res; |
| 1511 | return (fwn->magic == (unsigned long)match_data); |
| 1512 | } |
| 1513 | |
| 1514 | static void dev_cache_fw_image(struct device *dev, void *data) |
| 1515 | { |
| 1516 | LIST_HEAD(todo); |
| 1517 | struct fw_cache_entry *fce; |
| 1518 | struct fw_cache_entry *fce_next; |
| 1519 | struct firmware_cache *fwc = &fw_cache; |
| 1520 | |
| 1521 | devres_for_each_res(dev, fw_name_devm_release, |
| 1522 | devm_name_match, &fw_cache, |
| 1523 | dev_create_fw_entry, &todo); |
| 1524 | |
| 1525 | list_for_each_entry_safe(fce, fce_next, &todo, list) { |
| 1526 | list_del(&fce->list); |
| 1527 | |
| 1528 | spin_lock(&fwc->name_lock); |
| 1529 | /* only one cache entry for one firmware */ |
| 1530 | if (!__fw_entry_found(fce->name)) { |
| 1531 | list_add(&fce->list, &fwc->fw_names); |
| 1532 | } else { |
| 1533 | free_fw_cache_entry(fce); |
| 1534 | fce = NULL; |
| 1535 | } |
| 1536 | spin_unlock(&fwc->name_lock); |
| 1537 | |
| 1538 | if (fce) |
| 1539 | async_schedule_domain(__async_dev_cache_fw_image, |
| 1540 | (void *)fce, |
| 1541 | &fw_cache_domain); |
| 1542 | } |
| 1543 | } |
| 1544 | |
| 1545 | static void __device_uncache_fw_images(void) |
| 1546 | { |
| 1547 | struct firmware_cache *fwc = &fw_cache; |
| 1548 | struct fw_cache_entry *fce; |
| 1549 | |
| 1550 | spin_lock(&fwc->name_lock); |
| 1551 | while (!list_empty(&fwc->fw_names)) { |
| 1552 | fce = list_entry(fwc->fw_names.next, |
| 1553 | struct fw_cache_entry, list); |
| 1554 | list_del(&fce->list); |
| 1555 | spin_unlock(&fwc->name_lock); |
| 1556 | |
| 1557 | uncache_firmware(fce->name); |
| 1558 | free_fw_cache_entry(fce); |
| 1559 | |
| 1560 | spin_lock(&fwc->name_lock); |
| 1561 | } |
| 1562 | spin_unlock(&fwc->name_lock); |
| 1563 | } |
| 1564 | |
| 1565 | /** |
| 1566 | * device_cache_fw_images - cache devices' firmware |
| 1567 | * |
| 1568 | * If one device called request_firmware or its nowait version |
| 1569 | * successfully before, the firmware names are recored into the |
| 1570 | * device's devres link list, so device_cache_fw_images can call |
| 1571 | * cache_firmware() to cache these firmwares for the device, |
| 1572 | * then the device driver can load its firmwares easily at |
| 1573 | * time when system is not ready to complete loading firmware. |
| 1574 | */ |
| 1575 | static void device_cache_fw_images(void) |
| 1576 | { |
| 1577 | struct firmware_cache *fwc = &fw_cache; |
| 1578 | int old_timeout; |
| 1579 | DEFINE_WAIT(wait); |
| 1580 | |
| 1581 | pr_debug("%s\n", __func__); |
| 1582 | |
| 1583 | /* cancel uncache work */ |
| 1584 | cancel_delayed_work_sync(&fwc->work); |
| 1585 | |
| 1586 | /* |
| 1587 | * use small loading timeout for caching devices' firmware |
| 1588 | * because all these firmware images have been loaded |
| 1589 | * successfully at lease once, also system is ready for |
| 1590 | * completing firmware loading now. The maximum size of |
| 1591 | * firmware in current distributions is about 2M bytes, |
| 1592 | * so 10 secs should be enough. |
| 1593 | */ |
| 1594 | old_timeout = loading_timeout; |
| 1595 | loading_timeout = 10; |
| 1596 | |
| 1597 | mutex_lock(&fw_lock); |
| 1598 | fwc->state = FW_LOADER_START_CACHE; |
| 1599 | dpm_for_each_dev(NULL, dev_cache_fw_image); |
| 1600 | mutex_unlock(&fw_lock); |
| 1601 | |
| 1602 | /* wait for completion of caching firmware for all devices */ |
| 1603 | async_synchronize_full_domain(&fw_cache_domain); |
| 1604 | |
| 1605 | loading_timeout = old_timeout; |
| 1606 | } |
| 1607 | |
| 1608 | /** |
| 1609 | * device_uncache_fw_images - uncache devices' firmware |
| 1610 | * |
| 1611 | * uncache all firmwares which have been cached successfully |
| 1612 | * by device_uncache_fw_images earlier |
| 1613 | */ |
| 1614 | static void device_uncache_fw_images(void) |
| 1615 | { |
| 1616 | pr_debug("%s\n", __func__); |
| 1617 | __device_uncache_fw_images(); |
| 1618 | } |
| 1619 | |
| 1620 | static void device_uncache_fw_images_work(struct work_struct *work) |
| 1621 | { |
| 1622 | device_uncache_fw_images(); |
| 1623 | } |
| 1624 | |
| 1625 | /** |
| 1626 | * device_uncache_fw_images_delay - uncache devices firmwares |
| 1627 | * @delay: number of milliseconds to delay uncache device firmwares |
| 1628 | * |
| 1629 | * uncache all devices's firmwares which has been cached successfully |
| 1630 | * by device_cache_fw_images after @delay milliseconds. |
| 1631 | */ |
| 1632 | static void device_uncache_fw_images_delay(unsigned long delay) |
| 1633 | { |
| 1634 | queue_delayed_work(system_power_efficient_wq, &fw_cache.work, |
| 1635 | msecs_to_jiffies(delay)); |
| 1636 | } |
| 1637 | |
| 1638 | static int fw_pm_notify(struct notifier_block *notify_block, |
| 1639 | unsigned long mode, void *unused) |
| 1640 | { |
| 1641 | switch (mode) { |
| 1642 | case PM_HIBERNATION_PREPARE: |
| 1643 | case PM_SUSPEND_PREPARE: |
| 1644 | case PM_RESTORE_PREPARE: |
| 1645 | kill_requests_without_uevent(); |
| 1646 | device_cache_fw_images(); |
| 1647 | break; |
| 1648 | |
| 1649 | case PM_POST_SUSPEND: |
| 1650 | case PM_POST_HIBERNATION: |
| 1651 | case PM_POST_RESTORE: |
| 1652 | /* |
| 1653 | * In case that system sleep failed and syscore_suspend is |
| 1654 | * not called. |
| 1655 | */ |
| 1656 | mutex_lock(&fw_lock); |
| 1657 | fw_cache.state = FW_LOADER_NO_CACHE; |
| 1658 | mutex_unlock(&fw_lock); |
| 1659 | |
| 1660 | device_uncache_fw_images_delay(10 * MSEC_PER_SEC); |
| 1661 | break; |
| 1662 | } |
| 1663 | |
| 1664 | return 0; |
| 1665 | } |
| 1666 | |
| 1667 | /* stop caching firmware once syscore_suspend is reached */ |
| 1668 | static int fw_suspend(void) |
| 1669 | { |
| 1670 | fw_cache.state = FW_LOADER_NO_CACHE; |
| 1671 | return 0; |
| 1672 | } |
| 1673 | |
| 1674 | static struct syscore_ops fw_syscore_ops = { |
| 1675 | .suspend = fw_suspend, |
| 1676 | }; |
| 1677 | #else |
| 1678 | static int fw_cache_piggyback_on_request(const char *name) |
| 1679 | { |
| 1680 | return 0; |
| 1681 | } |
| 1682 | #endif |
| 1683 | |
| 1684 | static void __init fw_cache_init(void) |
| 1685 | { |
| 1686 | spin_lock_init(&fw_cache.lock); |
| 1687 | INIT_LIST_HEAD(&fw_cache.head); |
| 1688 | fw_cache.state = FW_LOADER_NO_CACHE; |
| 1689 | |
| 1690 | #ifdef CONFIG_PM_SLEEP |
| 1691 | spin_lock_init(&fw_cache.name_lock); |
| 1692 | INIT_LIST_HEAD(&fw_cache.fw_names); |
| 1693 | |
| 1694 | INIT_DELAYED_WORK(&fw_cache.work, |
| 1695 | device_uncache_fw_images_work); |
| 1696 | |
| 1697 | fw_cache.pm_notify.notifier_call = fw_pm_notify; |
| 1698 | register_pm_notifier(&fw_cache.pm_notify); |
| 1699 | |
| 1700 | register_syscore_ops(&fw_syscore_ops); |
| 1701 | #endif |
| 1702 | } |
| 1703 | |
| 1704 | static int __init firmware_class_init(void) |
| 1705 | { |
| 1706 | fw_cache_init(); |
| 1707 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 1708 | register_reboot_notifier(&fw_shutdown_nb); |
| 1709 | return class_register(&firmware_class); |
| 1710 | #else |
| 1711 | return 0; |
| 1712 | #endif |
| 1713 | } |
| 1714 | |
| 1715 | static void __exit firmware_class_exit(void) |
| 1716 | { |
| 1717 | #ifdef CONFIG_PM_SLEEP |
| 1718 | unregister_syscore_ops(&fw_syscore_ops); |
| 1719 | unregister_pm_notifier(&fw_cache.pm_notify); |
| 1720 | #endif |
| 1721 | #ifdef CONFIG_FW_LOADER_USER_HELPER |
| 1722 | unregister_reboot_notifier(&fw_shutdown_nb); |
| 1723 | class_unregister(&firmware_class); |
| 1724 | #endif |
| 1725 | } |
| 1726 | |
| 1727 | fs_initcall(firmware_class_init); |
| 1728 | module_exit(firmware_class_exit); |