Imported Upstream version 16.07-rc1
[deb_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  * Code here should not call rte_log since the EAL environment
37  * may not be initialized.
38  */
39
40 #include <stdio.h>
41 #include <string.h>
42
43 #include <rte_pci.h>
44 #include <rte_devargs.h>
45 #include "eal_private.h"
46
47 /** Global list of user devices */
48 struct rte_devargs_list devargs_list =
49         TAILQ_HEAD_INITIALIZER(devargs_list);
50
51 int
52 rte_eal_parse_devargs_str(const char *devargs_str,
53                         char **drvname, char **drvargs)
54 {
55         char *sep;
56
57         if ((devargs_str) == NULL || (drvname) == NULL || (drvargs == NULL))
58                 return -1;
59
60         *drvname = strdup(devargs_str);
61         if (*drvname == NULL)
62                 return -1;
63
64         /* set the first ',' to '\0' to split name and arguments */
65         sep = strchr(*drvname, ',');
66         if (sep != NULL) {
67                 sep[0] = '\0';
68                 *drvargs = strdup(sep + 1);
69         } else {
70                 *drvargs = strdup("");
71         }
72
73         if (*drvargs == NULL) {
74                 free(*drvname);
75                 return -1;
76         }
77         return 0;
78 }
79
80 /* store a whitelist parameter for later parsing */
81 int
82 rte_eal_devargs_add(enum rte_devtype devtype, const char *devargs_str)
83 {
84         struct rte_devargs *devargs = NULL;
85         char *buf = NULL;
86         int ret;
87
88         /* use malloc instead of rte_malloc as it's called early at init */
89         devargs = malloc(sizeof(*devargs));
90         if (devargs == NULL)
91                 goto fail;
92
93         memset(devargs, 0, sizeof(*devargs));
94         devargs->type = devtype;
95
96         if (rte_eal_parse_devargs_str(devargs_str, &buf, &devargs->args))
97                 goto fail;
98
99         switch (devargs->type) {
100         case RTE_DEVTYPE_WHITELISTED_PCI:
101         case RTE_DEVTYPE_BLACKLISTED_PCI:
102                 /* try to parse pci identifier */
103                 if (eal_parse_pci_BDF(buf, &devargs->pci.addr) != 0 &&
104                     eal_parse_pci_DomBDF(buf, &devargs->pci.addr) != 0)
105                         goto fail;
106
107                 break;
108         case RTE_DEVTYPE_VIRTUAL:
109                 /* save driver name */
110                 ret = snprintf(devargs->virt.drv_name,
111                                sizeof(devargs->virt.drv_name), "%s", buf);
112                 if (ret < 0 || ret >= (int)sizeof(devargs->virt.drv_name))
113                         goto fail;
114
115                 break;
116         }
117
118         free(buf);
119         TAILQ_INSERT_TAIL(&devargs_list, devargs, next);
120         return 0;
121
122 fail:
123         free(buf);
124         if (devargs) {
125                 free(devargs->args);
126                 free(devargs);
127         }
128
129         return -1;
130 }
131
132 /* count the number of devices of a specified type */
133 unsigned int
134 rte_eal_devargs_type_count(enum rte_devtype devtype)
135 {
136         struct rte_devargs *devargs;
137         unsigned int count = 0;
138
139         TAILQ_FOREACH(devargs, &devargs_list, next) {
140                 if (devargs->type != devtype)
141                         continue;
142                 count++;
143         }
144         return count;
145 }
146
147 /* dump the user devices on the console */
148 void
149 rte_eal_devargs_dump(FILE *f)
150 {
151         struct rte_devargs *devargs;
152
153         fprintf(f, "User device white list:\n");
154         TAILQ_FOREACH(devargs, &devargs_list, next) {
155                 if (devargs->type == RTE_DEVTYPE_WHITELISTED_PCI)
156                         fprintf(f, "  PCI whitelist " PCI_PRI_FMT " %s\n",
157                                devargs->pci.addr.domain,
158                                devargs->pci.addr.bus,
159                                devargs->pci.addr.devid,
160                                devargs->pci.addr.function,
161                                devargs->args);
162                 else if (devargs->type == RTE_DEVTYPE_BLACKLISTED_PCI)
163                         fprintf(f, "  PCI blacklist " PCI_PRI_FMT " %s\n",
164                                devargs->pci.addr.domain,
165                                devargs->pci.addr.bus,
166                                devargs->pci.addr.devid,
167                                devargs->pci.addr.function,
168                                devargs->args);
169                 else if (devargs->type == RTE_DEVTYPE_VIRTUAL)
170                         fprintf(f, "  VIRTUAL %s %s\n",
171                                devargs->virt.drv_name,
172                                devargs->args);
173                 else
174                         fprintf(f, "  UNKNOWN %s\n", devargs->args);
175         }
176 }