Fixed incorrect use of errno in usb cfs client
[platform/core/system/libdevice-node.git] / hw / usb_cfs_client_common.c
1 /*
2  * libdevice-node
3  *
4  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <errno.h>
20 #include <string.h>
21 #include <sys/stat.h>
22 #include <sys/types.h>
23 #include <sys/mount.h>
24
25 #include <usbg/usbg.h>
26 #include <usbg/function/net.h>
27 #include <libsyscommon/dbus-systemd.h>
28
29 #include <hw/usb_client.h>
30
31 #define CONFIGFS_PATH "/sys/kernel/config"
32
33 #define CONFIGFS_GADGET_NAME "hal-gadget"
34 #define CONFIGFS_CONFIG_LABEL "hal-config"
35
36 #define NAME_INSTANCE_SEP '.'
37 #define MAX_INSTANCE_LEN 512
38
39 #define USB_FUNCS_PATH "/dev/usb-funcs"
40
41 #ifndef EXPORT
42 #define EXPORT  __attribute__ ((visibility("default")))
43 #endif
44
45 enum cfs_function_service_operation {
46         CFS_FUNCTION_SERVICE_START,
47         CFS_FUNCTION_SERVICE_STOP,
48         CFS_FUNCTION_SERVICE_POST_STOP,
49 };
50
51 struct cfs_client {
52         struct usb_client client;
53         usbg_state *ctx;
54         usbg_gadget *gadget;
55         usbg_udc *udc;
56 };
57
58 /* Based on values in slp-gadget kernel module */
59 struct usbg_gadget_attrs default_g_attrs = {
60         .bcdUSB = 0x0200,
61         .idVendor = 0x04e8,
62         .idProduct = 0x6860,
63         .bcdDevice = 0x0100,
64 };
65
66 struct usbg_gadget_strs default_g_strs = {
67         .manufacturer = "Samsung",
68         .product = "TIZEN",
69         .serial = "01234TEST",
70 };
71
72 static struct usb_function *cfs_find_usb_function(usbg_function *function)
73 {
74         char *sep;
75         char buf[MAX_INSTANCE_LEN];
76         const char *instance = usbg_get_function_instance(function);
77         const char *name = usbg_get_function_type_str(usbg_get_function_type(function));
78
79         /* Ex. name:"ffs",  instance: "sdb.default" */
80         if (strcmp(name, usbg_get_function_type_str(USBG_F_FFS)) == 0) {
81                 strncpy(buf, instance, sizeof(buf) - 1);
82                 buf[sizeof(buf) - 1] = '\0';
83
84                 /* Ex. "sdb.default" ==> "sdb" + "default" */
85                 sep = strchr(buf, NAME_INSTANCE_SEP);
86                 if (!sep || !sep[1])
87                         return NULL;
88                 *sep = '\0';
89
90                 name = buf;
91                 instance = sep + 1;
92         }
93
94         return find_usb_function_by_name_instance(name, instance);
95 }
96
97 static bool cfs_is_function_supported(struct usb_client *usb,
98                                          struct usb_function *func)
99 {
100         bool res;
101         int ret;
102
103         if (!func->is_functionfs) {
104                 ret = usbg_lookup_function_type(func->name);
105                 res = ret >= 0;
106         } else {
107                 /* TODO: Check if socket is available */
108                 res = true;
109         }
110
111         return res;
112 }
113
114 static bool cfs_is_gadget_supported(struct usb_client *usb,
115                                        struct usb_gadget *gadget)
116 {
117         int i, j;
118
119         if (!gadget || !gadget->configs || !gadget->funcs)
120                 return false;
121
122         /* No real restrictions for strings */
123         for (j = 0; gadget->configs && gadget->configs[j]; ++j) {
124                 struct usb_configuration *config = gadget->configs[j];
125
126                 if (!config->funcs)
127                         return false;
128
129                 for (i = 0; config->funcs[i]; ++i)
130                         if (!cfs_is_function_supported(usb, config->funcs[i]))
131                                 return false;
132         }
133
134         if (j == 0)
135                 return false;
136
137         return true;
138 }
139
140 static int cfs_set_gadget_attrs(struct cfs_client *cfs_client,
141                                 struct usb_gadget_attrs *attrs)
142 {
143         int ret;
144         struct usbg_gadget_attrs gadget_attrs;
145
146         ret = usbg_get_gadget_attrs(cfs_client->gadget, &gadget_attrs);
147         if (ret)
148                 return ret;
149
150         gadget_attrs.bDeviceClass = attrs->bDeviceClass;
151         gadget_attrs.bDeviceSubClass = attrs->bDeviceSubClass;
152         gadget_attrs.bDeviceProtocol = attrs->bDeviceProtocol;
153         gadget_attrs.idVendor = attrs->idVendor;
154         gadget_attrs.idProduct = attrs->idProduct;
155         gadget_attrs.bcdDevice = attrs->bcdDevice;
156
157         ret = usbg_set_gadget_attrs(cfs_client->gadget, &gadget_attrs);
158
159         return ret;
160 }
161
162 static int cfs_set_gadget_strs(struct cfs_client *cfs_client,
163                                   struct usb_gadget_strings *strs)
164 {
165         int ret = 0;
166
167         /*
168          * TODO
169          * Here is a good place to ensure that serial is immutable
170          */
171 #define SET_STR(FIELD, STR_ID)                          \
172         if (strs->FIELD) {                              \
173                 ret = usbg_set_gadget_str(cfs_client->gadget,   \
174                                           STR_ID,               \
175                                           strs->lang_code,      \
176                                           strs->FIELD);         \
177                 if (ret)                                        \
178                         return ret;                             \
179         }
180
181         SET_STR(manufacturer, USBG_STR_MANUFACTURER);
182         SET_STR(product, USBG_STR_PRODUCT);
183         SET_STR(serial, USBG_STR_SERIAL_NUMBER);
184 #undef SET_STR
185         return ret;
186 }
187
188 static int cfs_ensure_dir(char *path)
189 {
190         if (mkdir(path, 0770) < 0)
191                 return (errno == EEXIST) ? 0 : -errno;
192
193         return 0;
194 }
195
196
197 static int cfs_prep_ffs_service(struct usb_function *usb_func, usbg_function *function)
198 {
199         int ret;
200         const char *name;
201         const char *service;
202         const char *instance;
203         const char *dev_name;
204         char buf[MAX_INSTANCE_LEN];
205
206         if (!usb_func || !function)
207                 return -EINVAL;
208
209         if (usbg_get_function_type(function) != USBG_F_FFS)
210                 return -EINVAL;
211
212         name = usb_func->name;
213         service = usb_func->service;
214         instance = usb_func->instance;
215         dev_name = usbg_get_function_instance(function);
216
217         /* "/dev/usb-funcs" + "/" + "sdb" + "/" + "default"  + '0' */
218         if (strlen(USB_FUNCS_PATH) + strlen(name) + strlen(instance) + 3  > sizeof(buf))
219                 return -ENAMETOOLONG;
220
221         /* mkdir /dev/usb-funcs */
222         ret = cfs_ensure_dir(USB_FUNCS_PATH);
223         if (ret < 0)
224                 return ret;
225
226         /* mkdir /dev/usb-funcs/sdb */
227         snprintf(buf, sizeof(buf), "%s/%s", USB_FUNCS_PATH, name);
228         ret = cfs_ensure_dir(buf);
229         if (ret < 0)
230                 goto out_rmdir;
231
232         /* mkdir /dev/usb-funcs/sdb/default */
233         snprintf(buf, sizeof(buf), "%s/%s/%s", USB_FUNCS_PATH, name, instance);
234         ret = cfs_ensure_dir(buf);
235         if (ret < 0)
236                 goto out_rmdir;
237
238         /* mount -t functionfs sdb.default /dev/usb-funcs/sdb/default */
239         ret = mount(dev_name, buf, "functionfs", 0, NULL);
240         if (ret < 0)
241                 goto out_rmdir;
242
243         /* start sdbd.socket */
244         ret = systemd_start_unit_wait_started(service, ".socket", -1);
245         if (ret < 0)
246                 goto out_unmount;
247
248         return 0;
249
250 out_unmount:
251         umount(buf);
252
253 out_rmdir:
254         snprintf(buf, sizeof(buf), "%s/%s/%s", USB_FUNCS_PATH, name, instance);
255         rmdir(buf);
256
257         snprintf(buf, sizeof(buf), "%s/%s", USB_FUNCS_PATH, name);
258         rmdir(buf);
259
260         rmdir(USB_FUNCS_PATH);
261
262         return ret;
263 }
264
265 static int cfs_cleanup_ffs_service(usbg_function *function)
266 {
267         int ret;
268         char buf[MAX_INSTANCE_LEN];
269         struct usb_function *usb_function;
270
271         if (!function)
272                 return -EINVAL;
273
274         usb_function = cfs_find_usb_function(function);
275         if (!usb_function)
276                 return -ENOENT;
277
278         /* stop .socket first and stop .service later becuase of socket activation */
279         if (usb_function->service) {
280                 (void)systemd_stop_unit_wait_stopped(usb_function->service, ".socket", -1);
281                 (void)systemd_stop_unit_wait_stopped(usb_function->service, ".service", -1);
282         }
283
284         /* umount /dev/usb-funcs/[sdb|mtp]/default and remove it's directory */
285         ret = snprintf(buf, sizeof(buf), "%s/%s/%s", USB_FUNCS_PATH, usb_function->name, usb_function->instance);
286         if (ret < 0)
287                 return ret;
288
289         ret = umount(buf);
290         if (ret < 0)
291                 return ret;
292
293         ret = rmdir(buf);
294         if (ret < 0)
295                 return ret;
296
297         /* remove /dev/usb-funcs/[sdb|mtp] directory */
298         ret = snprintf(buf, sizeof(buf), "%s/%s", USB_FUNCS_PATH, usb_function->name);
299         if (ret < 0)
300                 return ret;
301
302         ret = rmdir(buf);
303         if (ret < 0 && errno != ENOTEMPTY)
304                 return ret;
305
306         /* remove /dev/usb-funcs/ directory */
307         ret = rmdir(USB_FUNCS_PATH);
308         if (ret < 0 && errno != ENOTEMPTY)
309                 return ret;
310
311         return 0;
312 }
313
314
315 static int cfs_set_rndis_mac_addr(usbg_gadget *gadget, usbg_function *func)
316 {
317         int i, ret;
318         struct ether_addr ethaddr;
319         struct usbg_gadget_strs strs;
320         struct usbg_f_net *nf = usbg_to_net_function(func);
321
322         if (!nf)
323                 return -EINVAL;
324
325         ret = usbg_get_gadget_strs(gadget, LANG_US_ENG, &strs);
326         if (ret != USBG_SUCCESS)
327                 return ret;
328
329         for (i = 0; i < ETHER_ADDR_LEN; i++)
330                 ethaddr.ether_addr_octet[i] = 0;
331
332         for (i = 0; (i < 256) && strs.serial[i]; i++) {
333                 ethaddr.ether_addr_octet[i % (ETHER_ADDR_LEN - 1) + 1] ^= strs.serial[i];
334         }
335         ethaddr.ether_addr_octet[0] &= 0xfe;     /* clear multicast bit */
336         ethaddr.ether_addr_octet[0] |= 0x02;     /* set local assignment bit (IEEE802) */
337
338         usbg_free_gadget_strs(&strs);
339
340         /* host_addr changes mac address */
341         ret = usbg_f_net_set_host_addr(nf, &ethaddr);
342
343         return ret;
344 }
345
346 static int cfs_cleanup_all_config_and_function(struct cfs_client *cfs_client)
347 {
348         int ret;
349         usbg_config *config;
350         usbg_function *function;
351
352         /* delete all configs */
353 restart_rm_config:
354         usbg_for_each_config(config, cfs_client->gadget) {
355                 ret = usbg_rm_config(config, USBG_RM_RECURSE);
356                 if (ret)
357                         return ret;
358
359                 goto restart_rm_config; /* You cannot delete a config directly in an iterator. */
360         }
361
362         /* delete all functions */
363 restart_rm_function:
364         usbg_for_each_function(function, cfs_client->gadget) {
365                 if (usbg_get_function_type(function) == USBG_F_FFS) {
366                         ret = cfs_cleanup_ffs_service(function);
367                         if (ret)
368                                 return ret;
369                 }
370
371                 ret = usbg_rm_function(function, USBG_RM_RECURSE);
372                 if (ret)
373                         return ret;
374
375                 goto restart_rm_function; /* You cannot delete a function directly in an iterator. */
376         }
377
378         return 0;
379 }
380
381 static int cfs_set_gadget_config(struct cfs_client *cfs_client, int config_id, struct usb_configuration *usb_config)
382 {
383         int i;
384         int ret;
385         int function_type;
386         usbg_config *config;
387         usbg_function *function;
388         struct usb_function *usb_func;
389         char instance[MAX_INSTANCE_LEN];
390         struct usbg_config_attrs cattrs = {
391                 .bmAttributes = usb_config->attrs.bmAttributs,
392                 .bMaxPower = usb_config->attrs.MaxPower/2,
393         };
394
395         if (!usb_config->funcs || !usb_config->funcs[0])
396                 return -EINVAL;
397
398         ret = usbg_create_config(cfs_client->gadget, config_id, CONFIGFS_CONFIG_LABEL, &cattrs, NULL, &config);
399         if (ret)
400                 return ret;
401
402         for (i = 0; usb_config->strs && usb_config->strs[i].lang_code; ++i) {
403                 ret = usbg_set_config_string(config, usb_config->strs[i].lang_code, usb_config->strs[i].config_str);
404                 if (ret)
405                         return ret;
406         }
407
408         for (i = 0; usb_config->funcs[i]; ++i) {
409                 usb_func = usb_config->funcs[i];
410
411                 /* name("sdb") + NAME_INSTANCE_SEP(".") + instance("default") + '\0' */
412                 if (strlen(usb_func->name) + strlen(usb_func->instance) + 2 > sizeof(instance))
413                         return -ENAMETOOLONG;
414
415                 /* In functionfs, the instance is used in the format "[sdb|mtp].default" instead of "default" */
416                 if (usb_func->is_functionfs) {
417                         function_type = USBG_F_FFS;
418                         snprintf(instance, sizeof(instance), "%s%c%s", usb_func->name, NAME_INSTANCE_SEP, usb_func->instance);
419                 } else {
420                         function_type = usbg_lookup_function_type(usb_func->name);
421                         strncpy(instance, usb_func->instance, sizeof(instance) - 1);
422                         instance[sizeof(instance) - 1] = '\0';
423                 }
424
425                 function = usbg_get_function(cfs_client->gadget, function_type, instance);
426                 if (!function) {
427                         ret = usbg_create_function(cfs_client->gadget, function_type, instance, NULL, &function);
428                         if (ret)
429                                 return ret;
430
431                         /* Setting rndis mac address. This should be done at this point,
432                          * since the node host_addr changes to read only after the function
433                          * is added to config. */
434                         if (usbg_get_function_type(function) == USBG_F_RNDIS)
435                                 (void)cfs_set_rndis_mac_addr(cfs_client->gadget, function); /* A random value is used if fails */
436
437                         if (usbg_get_function_type(function) == USBG_F_FFS) {
438                                 ret = cfs_prep_ffs_service(usb_func, function);
439                                 if (ret)
440                                         return ret;
441                         }
442                 }
443
444                 ret = usbg_add_config_function(config, NULL, function);
445                 if (ret)
446                         return ret;
447         }
448
449         return 0;
450 }
451
452 static int cfs_reconfigure_gadget(struct usb_client *usb,
453                                   struct usb_gadget *gadget)
454 {
455         int i;
456         int ret;
457         struct cfs_client *cfs_client;
458
459         if (!usb || !gadget || !cfs_is_gadget_supported(usb, gadget))
460                 return -EINVAL;
461
462         cfs_client = container_of(usb, struct cfs_client, client);
463
464         ret = cfs_set_gadget_attrs(cfs_client, &gadget->attrs);
465         if (ret)
466                 return ret;
467
468         for (i = 0; gadget->strs && gadget->strs[i].lang_code > 0; ++i) {
469                 ret = cfs_set_gadget_strs(cfs_client, gadget->strs + i);
470                 if (ret)
471                         return ret;
472         }
473
474         ret = cfs_cleanup_all_config_and_function(cfs_client);
475         if (ret)
476                 return ret;
477
478         for (i = 0; gadget->configs && gadget->configs[i]; ++i) {
479                 ret = cfs_set_gadget_config(cfs_client, i + 1, gadget->configs[i]);
480                 if (ret)
481                         return ret;
482         }
483
484         return 0;
485 }
486
487 static void cfs_start_stop_service_and_handler(usbg_gadget *gadget, enum cfs_function_service_operation operation)
488 {
489         usbg_function *function;
490         struct usb_function *usb_function;
491
492         usbg_for_each_function(function, gadget) {
493                 usb_function = cfs_find_usb_function(function);
494                 if (!usb_function)
495                         continue;
496
497                 switch(operation) {
498                 case CFS_FUNCTION_SERVICE_START:
499                         if (usb_function->handler)
500                                 usb_function->handler(1);
501
502                         /* functionfs service is automatically started by socket activation */
503                         if (!usb_function->is_functionfs && usb_function->service)
504                                 (void)systemd_start_unit_wait_started(usb_function->service, ".service", -1);
505                         break;
506
507                 case CFS_FUNCTION_SERVICE_STOP:
508                         if (!usb_function->is_functionfs && usb_function->service)
509                                 (void)systemd_stop_unit_wait_stopped(usb_function->service, ".service", -1);
510
511                         if (usb_function->handler)
512                                 usb_function->handler(0);
513                         break;
514
515                 case CFS_FUNCTION_SERVICE_POST_STOP:
516                         if (usb_function->is_functionfs && usb_function->service)
517                                 (void)systemd_stop_unit_wait_stopped(usb_function->service, ".service", -1);
518                         break;
519
520                 default:
521                         break;
522                 }
523         }
524 }
525
526 static int cfs_enable(struct usb_client *usb)
527 {
528         int ret;
529         struct cfs_client *cfs_client;
530
531         if (!usb)
532                 return -EINVAL;
533
534         cfs_client = container_of(usb, struct cfs_client, client);
535
536         ret = usbg_enable_gadget(cfs_client->gadget, cfs_client->udc);
537         if (ret)
538                 return ret;
539
540         cfs_start_stop_service_and_handler(cfs_client->gadget, CFS_FUNCTION_SERVICE_START);
541
542         return 0;
543 }
544
545 static int cfs_disable(struct usb_client *usb)
546 {
547         int ret;
548         struct cfs_client *cfs_client;
549
550         if (!usb)
551                 return -EINVAL;
552
553         cfs_client = container_of(usb, struct cfs_client, client);
554
555         cfs_start_stop_service_and_handler(cfs_client->gadget, CFS_FUNCTION_SERVICE_STOP);
556
557         ret = usbg_disable_gadget(cfs_client->gadget); /* ignore error checking */
558
559         /*
560          * Since functionfs service works with socket activation, you must stop it after disabling gadget.
561          * If usb data may come in after stopping functionfs service and before disabling gadget,
562          * functionfs service wakes up again by socket activation.
563          */
564         cfs_start_stop_service_and_handler(cfs_client->gadget, CFS_FUNCTION_SERVICE_POST_STOP);
565
566         return ret;
567 }
568
569 EXPORT
570 int hw_cfs_gadget_open(struct hw_info *info,
571                 const char *id, struct hw_common **common)
572 {
573         struct cfs_client *cfs_client;
574         int ret;
575
576         if (!info || !common)
577                 return -EINVAL;
578
579         cfs_client = calloc(1, sizeof(*cfs_client));
580         if (!cfs_client)
581                 return -ENOMEM;
582
583         ret = usbg_init(CONFIGFS_PATH, &cfs_client->ctx);
584         if (ret)
585                 goto err_usbg_init;
586
587         cfs_client->udc = usbg_get_first_udc(cfs_client->ctx);
588         if (!cfs_client->udc) {
589                 ret = -ENODEV;
590                 goto err_no_udc;
591         }
592
593         ret = usbg_create_gadget(cfs_client->ctx, CONFIGFS_GADGET_NAME,
594                                  &default_g_attrs, &default_g_strs,
595                                  &cfs_client->gadget);
596         if (ret)
597                 goto err_create_gadget;
598
599         cfs_client->client.common.info = info;
600
601         cfs_client->client.reconfigure_gadget = cfs_reconfigure_gadget;
602         cfs_client->client.enable = cfs_enable;
603         cfs_client->client.disable = cfs_disable;
604
605         *common = &cfs_client->client.common;
606
607         return 0;
608
609 err_create_gadget:
610 err_no_udc:
611         usbg_cleanup(cfs_client->ctx);
612 err_usbg_init:
613         free(cfs_client);
614
615         return ret;
616 }
617
618 EXPORT
619 int hw_cfs_gadget_close(struct hw_common *common)
620 {
621         usbg_function *function;
622         struct cfs_client *cfs_client;
623         struct usb_function *usb_func;
624
625         if (!common)
626                 return -EINVAL;
627
628         cfs_client = container_of(common, struct cfs_client, client.common);
629
630         usbg_for_each_function(function, cfs_client->gadget) {
631                 usb_func = cfs_find_usb_function(function);
632                 if (!usb_func)
633                         continue;
634
635                 if (usb_func->is_functionfs && usb_func->service) {
636                         (void)systemd_stop_unit_wait_stopped(usb_func->service, ".socket", -1);
637                         (void)systemd_stop_unit_wait_stopped(usb_func->service, ".service", -1);
638                 }
639         }
640
641         /*
642          * For now we don't check for errors
643          * but we should somehow handle them
644          */
645         usbg_rm_gadget(cfs_client->gadget, USBG_RM_RECURSE);
646         usbg_cleanup(cfs_client->ctx);
647         free(cfs_client);
648
649         return 0;
650 }
651