• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
3  * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice, this list of
9  *    conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice, this list
12  *    of conditions and the following disclaimer in the documentation and/or other materials
13  *    provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its contributors may be used
16  *    to endorse or promote products derived from this software without specific prior written
17  *    permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 #include "los_partition_utils.h"
32 #if defined(LOSCFG_STORAGE_SPINOR)
33 #include "mtd_partition.h"
34 #endif
35 
MatchPartPos(CHAR * p,const CHAR * partInfoName,INT32 * partInfo)36 STATIC INT32 MatchPartPos(CHAR *p, const CHAR *partInfoName, INT32 *partInfo)
37 {
38     UINT32 offset;
39     CHAR *value = NULL;
40 
41     if (strncmp(p, partInfoName, strlen(partInfoName)) == 0) {
42         value = p + strlen(partInfoName);
43         offset = strspn(value, DEC_NUMBER_STRING);
44         if (strcmp(p + strlen(p) - 1, "M") == 0) {
45             if ((offset < strlen(value) - 1) || (sscanf_s(value, "%d", partInfo) <= 0)) {
46                 goto ERROUT;
47             }
48             *partInfo = *partInfo * BYTES_PER_MBYTE;
49         } else if (strcmp(p + strlen(p) - 1, "K") == 0) {
50             if ((offset < (strlen(value) - 1)) || (sscanf_s(value, "%d", partInfo) <= 0)) {
51                 goto ERROUT;
52             }
53             *partInfo = *partInfo * BYTES_PER_KBYTE;
54         } else if (sscanf_s(value, "0x%x", partInfo) > 0) {
55             value += strlen("0x");
56             if (strspn(value, HEX_NUMBER_STRING) < strlen(value)) {
57                 goto ERROUT;
58             }
59         } else {
60             goto ERROUT;
61         }
62     }
63 
64     return LOS_OK;
65 
66 ERROUT:
67     PRINT_ERR("Invalid format: %s\n", p + strlen(partInfoName));
68     return LOS_NOK;
69 }
70 
MatchPartInfo(CHAR * p,struct PartitionInfo * partInfo)71 STATIC INT32 MatchPartInfo(CHAR *p, struct PartitionInfo *partInfo)
72 {
73     const CHAR *storageTypeArgName = partInfo->storageTypeArgName;
74     const CHAR *fsTypeArgName      = partInfo->fsTypeArgName;
75     const CHAR *addrArgName        = partInfo->addrArgName;
76     const CHAR *partSizeArgName    = partInfo->partSizeArgName;
77 
78     if ((partInfo->storageType == NULL) && (strncmp(p, storageTypeArgName, strlen(storageTypeArgName)) == 0)) {
79         partInfo->storageType = strdup(p + strlen(storageTypeArgName));
80         if (partInfo->storageType == NULL) {
81             return LOS_NOK;
82         }
83         return LOS_OK;
84     }
85 
86     if ((partInfo->fsType == NULL) && (strncmp(p, fsTypeArgName, strlen(fsTypeArgName)) == 0)) {
87         partInfo->fsType = strdup(p + strlen(fsTypeArgName));
88         if (partInfo->fsType == NULL) {
89             return LOS_NOK;
90         }
91         return LOS_OK;
92     }
93 
94     if (partInfo->startAddr < 0) {
95         if (MatchPartPos(p, addrArgName, &partInfo->startAddr) != LOS_OK) {
96             return LOS_NOK;
97         } else if (partInfo->startAddr >= 0) {
98             return LOS_OK;
99         }
100     }
101 
102     if (partInfo->partSize < 0) {
103         if (MatchPartPos(p, partSizeArgName, &partInfo->partSize) != LOS_OK) {
104             return LOS_NOK;
105         }
106     }
107 
108     return LOS_OK;
109 }
110 
GetPartitionBootArgs(const CHAR * argName,CHAR ** args)111 STATIC INT32 GetPartitionBootArgs(const CHAR *argName, CHAR **args)
112 {
113     INT32 i;
114     INT32 len = 0;
115     CHAR *cmdLine = NULL;
116     INT32 cmdLineLen;
117     CHAR *tmp = NULL;
118 
119     cmdLine = (CHAR *)malloc(COMMAND_LINE_SIZE);
120     if (cmdLine == NULL) {
121         PRINT_ERR("Malloc cmdLine space failed!\n");
122         return LOS_NOK;
123     }
124 
125 #if defined(LOSCFG_STORAGE_SPINOR)
126     struct MtdDev *mtd = GetMtd(FLASH_TYPE);
127     if (mtd == NULL) {
128         PRINT_ERR("Get spinor mtd failed!\n");
129         goto ERROUT;
130     }
131     cmdLineLen = mtd->read(mtd, COMMAND_LINE_ADDR, COMMAND_LINE_SIZE, cmdLine);
132     if ((cmdLineLen != COMMAND_LINE_SIZE)) {
133         PRINT_ERR("Read spinor command line failed!\n");
134         goto ERROUT;
135     }
136 #else
137     cmdLineLen = 0;
138 #endif
139 
140     for (i = 0; i < cmdLineLen; i += len + 1) {
141         len = strlen(cmdLine + i);
142         tmp = strstr(cmdLine + i, argName);
143         if (tmp != NULL) {
144             *args = strdup(tmp + strlen(argName));
145             if (*args == NULL) {
146                 goto ERROUT;
147             }
148             free(cmdLine);
149             return LOS_OK;
150         }
151     }
152 
153     PRINTK("no patch partition bootargs\n");
154 
155 ERROUT:
156     free(cmdLine);
157     return LOS_NOK;
158 }
159 
GetPartitionInfo(struct PartitionInfo * partInfo)160 INT32 GetPartitionInfo(struct PartitionInfo *partInfo)
161 {
162     CHAR *args    = NULL;
163     CHAR *argsBak = NULL;
164     CHAR *p       = NULL;
165 
166     if (GetPartitionBootArgs(partInfo->cmdlineArgName, &args) != LOS_OK) {
167         return LOS_NOK;
168     }
169     argsBak = args;
170 
171     p = strsep(&args, " ");
172     while (p != NULL) {
173         if (MatchPartInfo(p, partInfo) != LOS_OK) {
174             goto ERROUT;
175         }
176         p = strsep(&args, " ");
177     }
178     if ((partInfo->fsType != NULL) && (partInfo->storageType != NULL)) {
179         free(argsBak);
180         return LOS_OK;
181     }
182     PRINT_ERR("Cannot find %s type\n", partInfo->partName);
183 
184 ERROUT:
185     PRINT_ERR("Invalid %s information!\n", partInfo->partName);
186     if (partInfo->storageType != NULL) {
187         free(partInfo->storageType);
188         partInfo->storageType = NULL;
189     }
190     if (partInfo->fsType != NULL) {
191         free(partInfo->fsType);
192         partInfo->fsType = NULL;
193     }
194     free(argsBak);
195 
196     return LOS_NOK;
197 }
198 
GetDevNameOfPartition(const struct PartitionInfo * partInfo)199 const CHAR *GetDevNameOfPartition(const struct PartitionInfo *partInfo)
200 {
201     const CHAR *devName = NULL;
202 
203     if (strcmp(partInfo->storageType, STORAGE_TYPE) == 0) {
204 #if defined(LOSCFG_STORAGE_SPINOR)
205         INT32 ret = add_mtd_partition(FLASH_TYPE, partInfo->startAddr, partInfo->partSize, partInfo->partNum);
206         if (ret != LOS_OK) {
207             PRINT_ERR("Failed to add %s partition! error = %d\n", partInfo->partName, ret);
208         } else {
209             if (partInfo->devName != NULL) {
210                 devName = partInfo->devName;
211             }
212         }
213 #endif
214     } else {
215         PRINT_ERR("Failed to find %s dev type: %s\n", partInfo->partName, partInfo->storageType);
216     }
217 
218     return devName;
219 }
220 
ResetDevNameofPartition(const struct PartitionInfo * partInfo)221 INT32 ResetDevNameofPartition(const struct PartitionInfo *partInfo)
222 {
223     INT32 ret;
224 #if defined(LOSCFG_STORAGE_SPINOR)
225     ret = delete_mtd_partition(partInfo->partNum, FLASH_TYPE);
226     if (ret != ENOERR) {
227         int err = get_errno();
228         PRINT_ERR("Failed to delete %s, errno %d: %s\n", partInfo->devName, err, strerror(err));
229         ret = LOS_NOK;
230     }
231 #else
232     ret = LOS_NOK;
233 #endif
234     return ret;
235 }
236