| [21580dd] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2009 Lukas Mejdrech
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| [2544442] | 29 | /** @addtogroup libc
|
|---|
| [21580dd] | 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 |
|
|---|
| 33 | /** @file
|
|---|
| [edba2b6f] | 34 | * Character string with measured length implementation.
|
|---|
| 35 | * @see measured_strings.h
|
|---|
| [21580dd] | 36 | */
|
|---|
| 37 |
|
|---|
| [7390870] | 38 | #include <adt/measured_strings.h>
|
|---|
| [21580dd] | 39 | #include <malloc.h>
|
|---|
| 40 | #include <mem.h>
|
|---|
| 41 | #include <unistd.h>
|
|---|
| [c5b59ce] | 42 | #include <errno.h>
|
|---|
| 43 | #include <err.h>
|
|---|
| [7390870] | 44 | #include <async.h>
|
|---|
| [21580dd] | 45 |
|
|---|
| [edba2b6f] | 46 | /** Creates a new measured string bundled with a copy of the given string
|
|---|
| 47 | * itself as one memory block.
|
|---|
| 48 | *
|
|---|
| 49 | * If the measured string is being freed, whole memory block is freed.
|
|---|
| 50 | * The measured string should be used only as a constant.
|
|---|
| 51 | *
|
|---|
| 52 | * @param[in] string The initial character string to be stored.
|
|---|
| 53 | * @param[in] length The length of the given string without the terminating
|
|---|
| 54 | * zero ('/0') character. If the length is zero (0), the
|
|---|
| 55 | * actual length is computed. The given length is used and
|
|---|
| 56 | * appended with the terminating zero ('\\0') character
|
|---|
| 57 | * otherwise.
|
|---|
| 58 | * @returns The new bundled character string with measured length.
|
|---|
| 59 | * @returns NULL if there is not enough memory left.
|
|---|
| 60 | */
|
|---|
| 61 | measured_string_ref
|
|---|
| 62 | measured_string_create_bulk(const char * string, size_t length)
|
|---|
| 63 | {
|
|---|
| [aadf01e] | 64 | measured_string_ref new;
|
|---|
| [21580dd] | 65 |
|
|---|
| [edba2b6f] | 66 | if (length == 0) {
|
|---|
| 67 | while (string[length])
|
|---|
| 68 | ++length;
|
|---|
| [aadf01e] | 69 | }
|
|---|
| [edba2b6f] | 70 | new = (measured_string_ref) malloc(sizeof(measured_string_t) +
|
|---|
| 71 | (sizeof(char) * (length + 1)));
|
|---|
| 72 | if (!new)
|
|---|
| [aadf01e] | 73 | return NULL;
|
|---|
| [edba2b6f] | 74 |
|
|---|
| [21580dd] | 75 | new->length = length;
|
|---|
| [aadf01e] | 76 | new->value = ((char *) new) + sizeof(measured_string_t);
|
|---|
| [21580dd] | 77 | // append terminating zero explicitly - to be safe
|
|---|
| [aadf01e] | 78 | memcpy(new->value, string, new->length);
|
|---|
| 79 | new->value[new->length] = '\0';
|
|---|
| [edba2b6f] | 80 |
|
|---|
| [21580dd] | 81 | return new;
|
|---|
| 82 | }
|
|---|
| 83 |
|
|---|
| [edba2b6f] | 84 | /** Copies the given measured string with separated header and data parts.
|
|---|
| 85 | *
|
|---|
| 86 | * @param[in] source The source measured string to be copied.
|
|---|
| 87 | * @returns The copy of the given measured string.
|
|---|
| 88 | * @returns NULL if the source parameter is NULL.
|
|---|
| 89 | * @returns NULL if there is not enough memory left.
|
|---|
| 90 | */
|
|---|
| 91 | measured_string_ref measured_string_copy(measured_string_ref source)
|
|---|
| 92 | {
|
|---|
| [aadf01e] | 93 | measured_string_ref new;
|
|---|
| [21580dd] | 94 |
|
|---|
| [edba2b6f] | 95 | if (!source)
|
|---|
| [aadf01e] | 96 | return NULL;
|
|---|
| [edba2b6f] | 97 |
|
|---|
| [aadf01e] | 98 | new = (measured_string_ref) malloc(sizeof(measured_string_t));
|
|---|
| [edba2b6f] | 99 | if (new) {
|
|---|
| [aadf01e] | 100 | new->value = (char *) malloc(source->length + 1);
|
|---|
| [edba2b6f] | 101 | if (new->value) {
|
|---|
| [21580dd] | 102 | new->length = source->length;
|
|---|
| [aadf01e] | 103 | memcpy(new->value, source->value, new->length);
|
|---|
| 104 | new->value[new->length] = '\0';
|
|---|
| [21580dd] | 105 | return new;
|
|---|
| [edba2b6f] | 106 | } else {
|
|---|
| [aadf01e] | 107 | free(new);
|
|---|
| [21580dd] | 108 | }
|
|---|
| 109 | }
|
|---|
| [edba2b6f] | 110 |
|
|---|
| [21580dd] | 111 | return NULL;
|
|---|
| 112 | }
|
|---|
| 113 |
|
|---|
| [edba2b6f] | 114 | /** Receives a measured strings array from a calling module.
|
|---|
| 115 | *
|
|---|
| 116 | * Creates the array and the data memory blocks.
|
|---|
| 117 | * This method should be used only while processing IPC messages as the array
|
|---|
| 118 | * size has to be negotiated in advance.
|
|---|
| 119 | *
|
|---|
| 120 | * @param[out] strings The received measured strings array.
|
|---|
| 121 | * @param[out] data The measured strings data. This memory block stores the
|
|---|
| 122 | * actual character strings.
|
|---|
| 123 | * @param[in] count The size of the measured strings array.
|
|---|
| 124 | * @returns EOK on success.
|
|---|
| 125 | * @returns EINVAL if the strings or data parameter is NULL.
|
|---|
| 126 | * @returns EINVAL if the count parameter is zero (0).
|
|---|
| 127 | * @returns EINVAL if the sent array differs in size.
|
|---|
| 128 | * @returns EINVAL if there is inconsistency in sent measured
|
|---|
| 129 | * strings' lengths (should not occur).
|
|---|
| 130 | * @returns ENOMEM if there is not enough memory left.
|
|---|
| 131 | * @returns Other error codes as defined for the
|
|---|
| 132 | * async_data_write_finalize() function.
|
|---|
| 133 | */
|
|---|
| 134 | int
|
|---|
| 135 | measured_strings_receive(measured_string_ref *strings, char **data,
|
|---|
| 136 | size_t count)
|
|---|
| 137 | {
|
|---|
| [21580dd] | 138 | ERROR_DECLARE;
|
|---|
| 139 |
|
|---|
| [edba2b6f] | 140 | size_t *lengths;
|
|---|
| [aadf01e] | 141 | size_t index;
|
|---|
| 142 | size_t length;
|
|---|
| [edba2b6f] | 143 | char *next;
|
|---|
| [aadf01e] | 144 | ipc_callid_t callid;
|
|---|
| [21580dd] | 145 |
|
|---|
| [edba2b6f] | 146 | if ((!strings) || (!data) || (count <= 0))
|
|---|
| [21580dd] | 147 | return EINVAL;
|
|---|
| [edba2b6f] | 148 |
|
|---|
| [aadf01e] | 149 | lengths = (size_t *) malloc(sizeof(size_t) * (count + 1));
|
|---|
| [edba2b6f] | 150 | if (!lengths)
|
|---|
| [aadf01e] | 151 | return ENOMEM;
|
|---|
| [edba2b6f] | 152 |
|
|---|
| 153 | if ((!async_data_write_receive(&callid, &length)) ||
|
|---|
| 154 | (length != sizeof(size_t) * (count + 1))) {
|
|---|
| [aadf01e] | 155 | free(lengths);
|
|---|
| [21580dd] | 156 | return EINVAL;
|
|---|
| 157 | }
|
|---|
| [edba2b6f] | 158 | if(ERROR_OCCURRED(async_data_write_finalize(callid, lengths,
|
|---|
| 159 | sizeof(size_t) * (count + 1)))) {
|
|---|
| [aadf01e] | 160 | free(lengths);
|
|---|
| [21580dd] | 161 | return ERROR_CODE;
|
|---|
| 162 | }
|
|---|
| [0402bda5] | 163 |
|
|---|
| [aadf01e] | 164 | *data = malloc(lengths[count]);
|
|---|
| [edba2b6f] | 165 | if (!(*data)) {
|
|---|
| [0402bda5] | 166 | free(lengths);
|
|---|
| [aadf01e] | 167 | return ENOMEM;
|
|---|
| 168 | }
|
|---|
| 169 | (*data)[lengths[count] - 1] = '\0';
|
|---|
| [edba2b6f] | 170 |
|
|---|
| 171 | *strings = (measured_string_ref) malloc(sizeof(measured_string_t) *
|
|---|
| 172 | count);
|
|---|
| 173 | if (!(*strings)) {
|
|---|
| [aadf01e] | 174 | free(lengths);
|
|---|
| 175 | free(*data);
|
|---|
| [21580dd] | 176 | return ENOMEM;
|
|---|
| 177 | }
|
|---|
| [edba2b6f] | 178 |
|
|---|
| 179 | next = *data;
|
|---|
| 180 | for (index = 0; index < count; ++index) {
|
|---|
| [aadf01e] | 181 | (*strings)[index].length = lengths[index];
|
|---|
| [edba2b6f] | 182 | if (lengths[index] > 0) {
|
|---|
| 183 | if ((!async_data_write_receive(&callid, &length)) ||
|
|---|
| 184 | (length != lengths[index])) {
|
|---|
| [aadf01e] | 185 | free(*data);
|
|---|
| 186 | free(*strings);
|
|---|
| 187 | free(lengths);
|
|---|
| [21580dd] | 188 | return EINVAL;
|
|---|
| 189 | }
|
|---|
| [edba2b6f] | 190 | ERROR_PROPAGATE(async_data_write_finalize(callid, next,
|
|---|
| 191 | lengths[index]));
|
|---|
| [aadf01e] | 192 | (*strings)[index].value = next;
|
|---|
| 193 | next += lengths[index];
|
|---|
| 194 | *next = '\0';
|
|---|
| [edba2b6f] | 195 | ++next;
|
|---|
| 196 | } else {
|
|---|
| [aadf01e] | 197 | (*strings)[index].value = NULL;
|
|---|
| [21580dd] | 198 | }
|
|---|
| 199 | }
|
|---|
| [edba2b6f] | 200 |
|
|---|
| [aadf01e] | 201 | free(lengths);
|
|---|
| [21580dd] | 202 | return EOK;
|
|---|
| 203 | }
|
|---|
| 204 |
|
|---|
| [849ed54] | 205 | /** Computes the lengths of the measured strings in the given array.
|
|---|
| [edba2b6f] | 206 | *
|
|---|
| 207 | * @param[in] strings The measured strings array to be processed.
|
|---|
| 208 | * @param[in] count The measured strings array size.
|
|---|
| 209 | * @returns The computed sizes array.
|
|---|
| 210 | * @returns NULL if there is not enough memory left.
|
|---|
| [849ed54] | 211 | */
|
|---|
| [edba2b6f] | 212 | static size_t *prepare_lengths(const measured_string_ref strings, size_t count)
|
|---|
| 213 | {
|
|---|
| 214 | size_t *lengths;
|
|---|
| [849ed54] | 215 | size_t index;
|
|---|
| 216 | size_t length;
|
|---|
| 217 |
|
|---|
| 218 | lengths = (size_t *) malloc(sizeof(size_t) * (count + 1));
|
|---|
| [edba2b6f] | 219 | if (!lengths)
|
|---|
| [849ed54] | 220 | return NULL;
|
|---|
| [edba2b6f] | 221 |
|
|---|
| [849ed54] | 222 | length = 0;
|
|---|
| [edba2b6f] | 223 | for (index = 0; index < count; ++ index) {
|
|---|
| [849ed54] | 224 | lengths[index] = strings[index].length;
|
|---|
| 225 | length += lengths[index] + 1;
|
|---|
| 226 | }
|
|---|
| 227 | lengths[count] = length;
|
|---|
| 228 | return lengths;
|
|---|
| 229 | }
|
|---|
| 230 |
|
|---|
| [edba2b6f] | 231 | /** Replies the given measured strings array to a calling module.
|
|---|
| 232 | *
|
|---|
| 233 | * This method should be used only while processing IPC messages as the array
|
|---|
| 234 | * size has to be negotiated in advance.
|
|---|
| 235 | *
|
|---|
| 236 | * @param[in] strings The measured strings array to be transferred.
|
|---|
| 237 | * @param[in] count The measured strings array size.
|
|---|
| 238 | * @returns EOK on success.
|
|---|
| 239 | * @returns EINVAL if the strings parameter is NULL.
|
|---|
| 240 | * @returns EINVAL if the count parameter is zero (0).
|
|---|
| 241 | * @returns EINVAL if the calling module does not accept the given
|
|---|
| 242 | * array size.
|
|---|
| 243 | * @returns EINVAL if there is inconsistency in sent measured
|
|---|
| 244 | * strings' lengths (should not occur).
|
|---|
| 245 | * @returns Other error codes as defined for the
|
|---|
| 246 | * async_data_read_finalize() function.
|
|---|
| 247 | */
|
|---|
| 248 | int measured_strings_reply(const measured_string_ref strings, size_t count)
|
|---|
| 249 | {
|
|---|
| [21580dd] | 250 | ERROR_DECLARE;
|
|---|
| 251 |
|
|---|
| [edba2b6f] | 252 | size_t *lengths;
|
|---|
| [aadf01e] | 253 | size_t index;
|
|---|
| 254 | size_t length;
|
|---|
| 255 | ipc_callid_t callid;
|
|---|
| [21580dd] | 256 |
|
|---|
| [edba2b6f] | 257 | if ((!strings) || (count <= 0))
|
|---|
| [21580dd] | 258 | return EINVAL;
|
|---|
| [edba2b6f] | 259 |
|
|---|
| [aadf01e] | 260 | lengths = prepare_lengths(strings, count);
|
|---|
| [edba2b6f] | 261 | if (!lengths)
|
|---|
| [aadf01e] | 262 | return ENOMEM;
|
|---|
| [edba2b6f] | 263 |
|
|---|
| 264 | if ((!async_data_read_receive(&callid, &length)) ||
|
|---|
| 265 | (length != sizeof(size_t) * (count + 1))) {
|
|---|
| [aadf01e] | 266 | free(lengths);
|
|---|
| [21580dd] | 267 | return EINVAL;
|
|---|
| 268 | }
|
|---|
| [edba2b6f] | 269 | if (ERROR_OCCURRED(async_data_read_finalize(callid, lengths,
|
|---|
| 270 | sizeof(size_t) * (count + 1)))) {
|
|---|
| [aadf01e] | 271 | free(lengths);
|
|---|
| [21580dd] | 272 | return ERROR_CODE;
|
|---|
| 273 | }
|
|---|
| [aadf01e] | 274 | free(lengths);
|
|---|
| [edba2b6f] | 275 |
|
|---|
| 276 | for (index = 0; index < count; ++ index) {
|
|---|
| 277 | if (strings[index].length > 0) {
|
|---|
| 278 | if((!async_data_read_receive(&callid, &length)) ||
|
|---|
| 279 | (length != strings[index].length)) {
|
|---|
| [21580dd] | 280 | return EINVAL;
|
|---|
| 281 | }
|
|---|
| [edba2b6f] | 282 | ERROR_PROPAGATE(async_data_read_finalize(callid,
|
|---|
| 283 | strings[index].value, strings[index].length));
|
|---|
| [21580dd] | 284 | }
|
|---|
| 285 | }
|
|---|
| [edba2b6f] | 286 |
|
|---|
| [21580dd] | 287 | return EOK;
|
|---|
| 288 | }
|
|---|
| 289 |
|
|---|
| [edba2b6f] | 290 | /** Receives a measured strings array from another module.
|
|---|
| 291 | *
|
|---|
| 292 | * Creates the array and the data memory blocks.
|
|---|
| 293 | * This method should be used only following other IPC messages as the array
|
|---|
| 294 | * size has to be negotiated in advance.
|
|---|
| 295 | *
|
|---|
| 296 | * @param[in] phone The other module phone.
|
|---|
| 297 | * @param[out] strings The returned measured strings array.
|
|---|
| 298 | * @param[out] data The measured strings data. This memory block stores the
|
|---|
| 299 | * actual character strings.
|
|---|
| 300 | * @param[in] count The size of the measured strings array.
|
|---|
| 301 | * @returns EOK on success.
|
|---|
| 302 | * @returns EINVAL if the strings or data parameter is NULL.
|
|---|
| 303 | * @returns EINVAL if the phone or count parameter is not positive.
|
|---|
| 304 | * @returns EINVAL if the sent array differs in size.
|
|---|
| 305 | * @returns ENOMEM if there is not enough memory left.
|
|---|
| 306 | * @returns Other error codes as defined for the
|
|---|
| 307 | * async_data_read_start() function.
|
|---|
| 308 | */
|
|---|
| 309 | int
|
|---|
| 310 | measured_strings_return(int phone, measured_string_ref *strings, char **data,
|
|---|
| 311 | size_t count)
|
|---|
| 312 | {
|
|---|
| [21580dd] | 313 | ERROR_DECLARE;
|
|---|
| 314 |
|
|---|
| [edba2b6f] | 315 | size_t *lengths;
|
|---|
| [aadf01e] | 316 | size_t index;
|
|---|
| [edba2b6f] | 317 | char *next;
|
|---|
| [21580dd] | 318 |
|
|---|
| [edba2b6f] | 319 | if ((phone <= 0) || (!strings) || (!data) || (count <= 0))
|
|---|
| [21580dd] | 320 | return EINVAL;
|
|---|
| [edba2b6f] | 321 |
|
|---|
| [aadf01e] | 322 | lengths = (size_t *) malloc(sizeof(size_t) * (count + 1));
|
|---|
| [edba2b6f] | 323 | if (!lengths)
|
|---|
| [aadf01e] | 324 | return ENOMEM;
|
|---|
| [edba2b6f] | 325 |
|
|---|
| 326 | if (ERROR_OCCURRED(async_data_read_start(phone, lengths,
|
|---|
| 327 | sizeof(size_t) * (count + 1)))) {
|
|---|
| [aadf01e] | 328 | free(lengths);
|
|---|
| [21580dd] | 329 | return ERROR_CODE;
|
|---|
| 330 | }
|
|---|
| [edba2b6f] | 331 |
|
|---|
| [aadf01e] | 332 | *data = malloc(lengths[count]);
|
|---|
| [edba2b6f] | 333 | if (!(*data)) {
|
|---|
| [0402bda5] | 334 | free(lengths);
|
|---|
| [aadf01e] | 335 | return ENOMEM;
|
|---|
| 336 | }
|
|---|
| [edba2b6f] | 337 |
|
|---|
| 338 | *strings = (measured_string_ref) malloc(sizeof(measured_string_t) *
|
|---|
| 339 | count);
|
|---|
| 340 | if (!(*strings)) {
|
|---|
| [aadf01e] | 341 | free(lengths);
|
|---|
| 342 | free(*data);
|
|---|
| [21580dd] | 343 | return ENOMEM;
|
|---|
| 344 | }
|
|---|
| [edba2b6f] | 345 |
|
|---|
| 346 | next = *data;
|
|---|
| 347 | for (index = 0; index < count; ++ index) {
|
|---|
| [aadf01e] | 348 | (*strings)[index].length = lengths[index];
|
|---|
| [edba2b6f] | 349 | if (lengths[index] > 0) {
|
|---|
| 350 | ERROR_PROPAGATE(async_data_read_start(phone, next,
|
|---|
| 351 | lengths[index]));
|
|---|
| [aadf01e] | 352 | (*strings)[index].value = next;
|
|---|
| 353 | next += lengths[index];
|
|---|
| 354 | *next = '\0';
|
|---|
| [21580dd] | 355 | ++ next;
|
|---|
| [edba2b6f] | 356 | } else {
|
|---|
| [aadf01e] | 357 | (*strings)[index].value = NULL;
|
|---|
| [21580dd] | 358 | }
|
|---|
| 359 | }
|
|---|
| [edba2b6f] | 360 |
|
|---|
| [aadf01e] | 361 | free(lengths);
|
|---|
| [21580dd] | 362 | return EOK;
|
|---|
| 363 | }
|
|---|
| 364 |
|
|---|
| [edba2b6f] | 365 | /** Sends the given measured strings array to another module.
|
|---|
| 366 | *
|
|---|
| 367 | * This method should be used only following other IPC messages as the array
|
|---|
| 368 | * size has to be negotiated in advance.
|
|---|
| 369 | *
|
|---|
| 370 | * @param[in] phone The other module phone.
|
|---|
| 371 | * @param[in] strings The measured strings array to be transferred.
|
|---|
| 372 | * @param[in] count The measured strings array size.
|
|---|
| 373 | * @returns EOK on success.
|
|---|
| 374 | * @returns EINVAL if the strings parameter is NULL.
|
|---|
| 375 | * @returns EINVAL if the phone or count parameter is not positive.
|
|---|
| 376 | * @returns Other error codes as defined for the
|
|---|
| 377 | * async_data_write_start() function.
|
|---|
| 378 | */
|
|---|
| 379 | int
|
|---|
| 380 | measured_strings_send(int phone, const measured_string_ref strings,
|
|---|
| 381 | size_t count)
|
|---|
| 382 | {
|
|---|
| [21580dd] | 383 | ERROR_DECLARE;
|
|---|
| 384 |
|
|---|
| [edba2b6f] | 385 | size_t *lengths;
|
|---|
| [aadf01e] | 386 | size_t index;
|
|---|
| [21580dd] | 387 |
|
|---|
| [edba2b6f] | 388 | if ((phone <= 0) || (!strings) || (count <= 0))
|
|---|
| [21580dd] | 389 | return EINVAL;
|
|---|
| [edba2b6f] | 390 |
|
|---|
| [aadf01e] | 391 | lengths = prepare_lengths(strings, count);
|
|---|
| [edba2b6f] | 392 | if (!lengths)
|
|---|
| [aadf01e] | 393 | return ENOMEM;
|
|---|
| [edba2b6f] | 394 |
|
|---|
| 395 | if (ERROR_OCCURRED(async_data_write_start(phone, lengths,
|
|---|
| 396 | sizeof(size_t) * (count + 1)))) {
|
|---|
| [aadf01e] | 397 | free(lengths);
|
|---|
| [21580dd] | 398 | return ERROR_CODE;
|
|---|
| 399 | }
|
|---|
| [edba2b6f] | 400 |
|
|---|
| [aadf01e] | 401 | free(lengths);
|
|---|
| [edba2b6f] | 402 |
|
|---|
| 403 | for (index = 0; index < count; ++index) {
|
|---|
| 404 | if (strings[index].length > 0) {
|
|---|
| 405 | ERROR_PROPAGATE(async_data_write_start(phone,
|
|---|
| 406 | strings[index].value, strings[index].length));
|
|---|
| [21580dd] | 407 | }
|
|---|
| 408 | }
|
|---|
| [edba2b6f] | 409 |
|
|---|
| [21580dd] | 410 | return EOK;
|
|---|
| 411 | }
|
|---|
| 412 |
|
|---|
| 413 | /** @}
|
|---|
| 414 | */
|
|---|
| 415 |
|
|---|