devargs: restore empty devargs
[dpdk.git] / lib / librte_eal / common / eal_common_devargs.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2014 6WIND S.A.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of 6WIND S.A nor the names of its contributors
17  *       may be used to endorse or promote products derived from this
18  *       software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 /* This file manages the list of devices and their arguments, as given
34  * by the user at startup */
35
36 #include <string.h>
37
38 #include <rte_log.h>
39 #include <rte_pci.h>
40 #include <rte_devargs.h>
41 #include "eal_private.h"
42
43 /** Global list of user devices */
44 struct rte_devargs_list devargs_list =
45         TAILQ_HEAD_INITIALIZER(devargs_list);
46
47 /* store a whitelist parameter for later parsing */
48 int
49 rte_eal_devargs_add(enum rte_devtype devtype, const char *devargs_str)
50 {
51         struct rte_devargs *devargs = NULL;
52         char *buf = NULL;
53         char *sep;
54         int ret;
55
56         /* use malloc instead of rte_malloc as it's called early at init */
57         devargs = malloc(sizeof(*devargs));
58         if (devargs == NULL) {
59                 RTE_LOG(ERR, EAL, "cannot allocate devargs\n");
60                 goto fail;
61         }
62         memset(devargs, 0, sizeof(*devargs));
63         devargs->type = devtype;
64
65         buf = strdup(devargs_str);
66         if (buf == NULL) {
67                 RTE_LOG(ERR, EAL, "cannot allocate temp memory for devargs\n");
68                 goto fail;
69         }
70
71         /* set the first ',' to '\0' to split name and arguments */
72         sep = strchr(buf, ',');
73         if (sep != NULL) {
74                 sep[0] = '\0';
75                 devargs->args = strdup(sep + 1);
76         } else {
77                 devargs->args = strdup("");
78         }
79
80         if (devargs->args == NULL) {
81                 RTE_LOG(ERR, EAL, "cannot allocate for devargs args\n");
82                 goto fail;
83         }
84
85         switch (devargs->type) {
86         case RTE_DEVTYPE_WHITELISTED_PCI:
87         case RTE_DEVTYPE_BLACKLISTED_PCI:
88                 /* try to parse pci identifier */
89                 if (eal_parse_pci_BDF(buf, &devargs->pci.addr) != 0 &&
90                     eal_parse_pci_DomBDF(buf, &devargs->pci.addr) != 0) {
91                         RTE_LOG(ERR, EAL, "invalid PCI identifier <%s>\n", buf);
92                         goto fail;
93                 }
94                 break;
95         case RTE_DEVTYPE_VIRTUAL:
96                 /* save driver name */
97                 ret = snprintf(devargs->virtual.drv_name,
98                                sizeof(devargs->virtual.drv_name), "%s", buf);
99                 if (ret < 0 || ret >= (int)sizeof(devargs->virtual.drv_name)) {
100                         RTE_LOG(ERR, EAL, "driver name too large: <%s>\n", buf);
101                         goto fail;
102                 }
103                 break;
104         }
105
106         free(buf);
107         TAILQ_INSERT_TAIL(&devargs_list, devargs, next);
108         return 0;
109
110 fail:
111         if (devargs->args)
112                 free(devargs->args);
113         if (buf)
114                 free(buf);
115         if (devargs)
116                 free(devargs);
117         return -1;
118 }
119
120 /* count the number of devices of a specified type */
121 unsigned int
122 rte_eal_devargs_type_count(enum rte_devtype devtype)
123 {
124         struct rte_devargs *devargs;
125         unsigned int count = 0;
126
127         TAILQ_FOREACH(devargs, &devargs_list, next) {
128                 if (devargs->type != devtype)
129                         continue;
130                 count++;
131         }
132         return count;
133 }
134
135 /* dump the user devices on the console */
136 void
137 rte_eal_devargs_dump(FILE *f)
138 {
139         struct rte_devargs *devargs;
140
141         fprintf(f, "User device white list:\n");
142         TAILQ_FOREACH(devargs, &devargs_list, next) {
143                 if (devargs->type == RTE_DEVTYPE_WHITELISTED_PCI)
144                         fprintf(f, "  PCI whitelist " PCI_PRI_FMT " %s\n",
145                                devargs->pci.addr.domain,
146                                devargs->pci.addr.bus,
147                                devargs->pci.addr.devid,
148                                devargs->pci.addr.function,
149                                devargs->args);
150                 else if (devargs->type == RTE_DEVTYPE_BLACKLISTED_PCI)
151                         fprintf(f, "  PCI blacklist " PCI_PRI_FMT " %s\n",
152                                devargs->pci.addr.domain,
153                                devargs->pci.addr.bus,
154                                devargs->pci.addr.devid,
155                                devargs->pci.addr.function,
156                                devargs->args);
157                 else if (devargs->type == RTE_DEVTYPE_VIRTUAL)
158                         fprintf(f, "  VIRTUAL %s %s\n",
159                                devargs->virtual.drv_name,
160                                devargs->args);
161                 else
162                         fprintf(f, "  UNKNOWN %s\n", devargs->args);
163         }
164 }