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