Modify the type reading CPU architecture type from sysinfo.
[sdk/target/sdbd.git] / src / sdb.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __SDB_H
18 #define __SDB_H
19
20 #include <limits.h>
21 #include <stdlib.h>
22 #include <stddef.h>
23
24 #include "transport.h"  /* readx(), writex() */
25 #include "fdevent.h"
26 #include "sdbd_plugin.h"
27 #if !SDB_HOST
28 #include "commandline_sdbd.h"
29 #endif
30 #include <tzplatform_config.h>
31
32 #define MAX_PAYLOAD 4096
33
34 #define A_SYNC 0x434e5953
35 #define A_CNXN 0x4e584e43
36 #define A_OPEN 0x4e45504f
37 #define A_OKAY 0x59414b4f
38 #define A_CLSE 0x45534c43
39 #define A_WRTE 0x45545257
40 #define A_STAT 0x54415453
41
42 #define A_VERSION 0x02000000        // SDB protocol version
43
44 #define SDB_VERSION_MAJOR 2         // Used for help/version information
45 #define SDB_VERSION_MINOR 2         // Used for help/version information
46 #define SDB_VERSION_PATCH 31        // Used for help/version information
47
48 #define SDB_SERVER_VERSION 0        // Increment this when we want to force users to start a new sdb server
49
50 typedef struct amessage amessage;
51 typedef struct apacket apacket;
52 typedef struct asocket asocket;
53 typedef struct alistener alistener;
54 typedef struct aservice aservice;
55 typedef struct atransport atransport;
56 typedef struct adisconnect  adisconnect;
57 typedef struct usb_handle usb_handle;
58
59 struct amessage {
60     unsigned command;       /* command identifier constant      */
61     unsigned arg0;          /* first argument                   */
62     unsigned arg1;          /* second argument                  */
63     unsigned data_length;   /* length of payload (0 is allowed) */
64     unsigned data_check;    /* checksum of data payload         */
65     unsigned magic;         /* command ^ 0xffffffff             */
66 };
67
68 struct apacket
69 {
70     apacket *next;
71
72     unsigned len;
73     unsigned char *ptr;
74
75     amessage msg;
76     unsigned char data[MAX_PAYLOAD];
77 };
78
79 /* An asocket represents one half of a connection between a local and
80 ** remote entity.  A local asocket is bound to a file descriptor.  A
81 ** remote asocket is bound to the protocol engine.
82 */
83 struct asocket {
84         /* chain pointers for the local/remote list of
85         ** asockets that this asocket lives in
86         */
87     asocket *next;
88     asocket *prev;
89
90         /* the unique identifier for this asocket
91         */
92     unsigned id;
93
94         /* flag: set when the socket's peer has closed
95         ** but packets are still queued for delivery
96         */
97     int    closing;
98
99         /* the asocket we are connected to
100         */
101
102     asocket *peer;
103
104         /* For local asockets, the fde is used to bind
105         ** us to our fd event system.  For remote asockets
106         ** these fields are not used.
107         */
108     fdevent fde;
109     int fd;
110
111         /* queue of apackets waiting to be written
112         */
113     apacket *pkt_first;
114     apacket *pkt_last;
115
116         /* enqueue is called by our peer when it has data
117         ** for us.  It should return 0 if we can accept more
118         ** data or 1 if not.  If we return 1, we must call
119         ** peer->ready() when we once again are ready to
120         ** receive data.
121         */
122     int (*enqueue)(asocket *s, apacket *pkt);
123
124         /* ready is called by the peer when it is ready for
125         ** us to send data via enqueue again
126         */
127     void (*ready)(asocket *s);
128
129         /* close is called by the peer when it has gone away.
130         ** we are not allowed to make any further calls on the
131         ** peer once our close method is called.
132         */
133     void (*close)(asocket *s);
134
135         /* socket-type-specific extradata */
136     void *extra;
137
138         /* A socket is bound to atransport */
139     atransport *transport;
140 };
141
142
143 /* the adisconnect structure is used to record a callback that
144 ** will be called whenever a transport is disconnected (e.g. by the user)
145 ** this should be used to cleanup objects that depend on the
146 ** transport (e.g. remote sockets, listeners, etc...)
147 */
148 struct  adisconnect
149 {
150     void        (*func)(void*  opaque, atransport*  t);
151     void*         opaque;
152     adisconnect*  next;
153     adisconnect*  prev;
154 };
155
156
157 /* a transport object models the connection to a remote device or emulator
158 ** there is one transport per connected device/emulator. a "local transport"
159 ** connects through TCP (for the emulator), while a "usb transport" through
160 ** USB (for real devices)
161 **
162 ** note that kTransportHost doesn't really correspond to a real transport
163 ** object, it's a special value used to indicate that a client wants to
164 ** connect to a service implemented within the SDB server itself.
165 */
166 typedef enum transport_type {
167         kTransportUsb,
168         kTransportLocal,
169         kTransportAny,
170         kTransportHost,
171 } transport_type;
172
173 struct atransport
174 {
175     atransport *next;
176     atransport *prev;
177
178     int (*read_from_remote)(apacket *p, atransport *t);
179     int (*write_to_remote)(apacket *p, atransport *t);
180     void (*close)(atransport *t);
181     void (*kick)(atransport *t);
182
183     int fd;
184     int transport_socket;
185     fdevent transport_fde;
186     int ref_count;
187     unsigned sync_token;
188     int connection_state;
189     transport_type type;
190
191         /* usb handle or socket fd as needed */
192     usb_handle *usb;
193     int sfd;
194
195         /* used to identify transports for clients */
196     char *serial;
197     char *product;
198     int sdb_port; // Use for emulators (local transport)
199     char *device_name; // for connection explorer
200
201         /* a list of adisconnect callbacks called when the transport is kicked */
202     int          kicked;
203     adisconnect  disconnects;
204 };
205
206
207 /* A listener is an entity which binds to a local port
208 ** and, upon receiving a connection on that port, creates
209 ** an asocket to connect the new local connection to a
210 ** specific remote service.
211 **
212 ** TODO: some listeners read from the new connection to
213 ** determine what exact service to connect to on the far
214 ** side.
215 */
216 struct alistener
217 {
218     alistener *next;
219     alistener *prev;
220
221     fdevent fde;
222     int fd;
223
224     const char *local_name;
225     const char *connect_to;
226     atransport *transport;
227     adisconnect  disconnect;
228 };
229
230 #define UNKNOWN "unknown"
231 #define INFOBUF_MAXLEN 64
232 #define INFO_VERSION "2.2.0"
233 typedef struct platform_info {
234     char platform_info_version[INFOBUF_MAXLEN];
235     char model_name[INFOBUF_MAXLEN]; // Emulator
236     char platform_name[INFOBUF_MAXLEN]; // Tizen
237     char platform_version[INFOBUF_MAXLEN]; // 2.2.1
238     char profile_name[INFOBUF_MAXLEN]; // 2.2.1
239 } pinfo;
240
241 #define ENABLED "enabled"
242 #define DISABLED "disabled"
243 #define CAPBUF_SIZE 4096
244 #define CAPBUF_ITEMSIZE 32
245 #define CAPBUF_L_ITEMSIZE 256
246 #define CAPBUF_LL_ITEMSIZE PATH_MAX
247 #define SDBD_CAP_VERSION_MAJOR 1
248 #define SDBD_CAP_VERSION_MINOR 0
249 typedef struct platform_capabilities
250 {
251     char secure_protocol[CAPBUF_ITEMSIZE];      // enabled or disabled
252     char intershell_support[CAPBUF_ITEMSIZE];   // enabled or disabled
253     char filesync_support[CAPBUF_ITEMSIZE];     // push or pull or pushpull or disabled
254     char rootonoff_support[CAPBUF_ITEMSIZE];    // enabled or disabled
255     char zone_support[CAPBUF_ITEMSIZE];         // enabled or disabled
256     char multiuser_support[CAPBUF_ITEMSIZE];    // enabled or disabled
257     char syncwinsz_support[CAPBUF_ITEMSIZE];    // enabled or disabled
258     char usbproto_support[CAPBUF_ITEMSIZE];     // enabled or disabled
259     char sockproto_support[CAPBUF_ITEMSIZE];    // enabled or disabled
260
261     char log_enable[CAPBUF_ITEMSIZE];    // enabled or disabled
262     char log_path[CAPBUF_LL_ITEMSIZE];    // path of sdbd log
263
264     char cpu_arch[CAPBUF_ITEMSIZE];             // cpu architecture (ex. x86)
265     char profile_name[CAPBUF_ITEMSIZE];         // profile name (ex. mobile)
266     char vendor_name[CAPBUF_ITEMSIZE];          // vendor name (ex. Tizen)
267     char sdk_toolpath[CAPBUF_L_ITEMSIZE];       // sdk tool path
268     char can_launch[CAPBUF_L_ITEMSIZE];         // target name
269
270     char platform_version[CAPBUF_ITEMSIZE];     // platform version (ex. 2.3.0)
271     char product_version[CAPBUF_ITEMSIZE];      // product version (ex. 1.0)
272     char sdbd_version[CAPBUF_ITEMSIZE];         // sdbd version
273     char sdbd_plugin_version[CAPBUF_ITEMSIZE];  // sdbd plugin version
274     char sdbd_cap_version[CAPBUF_ITEMSIZE];     // capability version
275 } pcap;
276 extern pcap g_capabilities;
277
278 #define SDBD_PLUGIN_PATH    "/usr/lib/libsdbd_plugin.so"
279 #define SDBD_PLUGIN_INTF    "sdbd_plugin_cmd_proc"
280 typedef int (*SDBD_PLUGIN_CMD_PROC_PTR)(const char*, const char*, sdbd_plugin_param);
281 extern SDBD_PLUGIN_CMD_PROC_PTR sdbd_plugin_cmd_proc;
282 int request_plugin_cmd(const char* cmd, const char* in_buf, char *out_buf, unsigned int out_len);
283 int request_plugin_verification(const char* cmd, const char* in_buf);
284
285 void print_packet(const char *label, apacket *p);
286
287 asocket *find_local_socket(unsigned id);
288 void install_local_socket(asocket *s);
289 void remove_socket(asocket *s);
290 void close_all_sockets(atransport *t);
291
292 #define  LOCAL_CLIENT_PREFIX  "emulator-"
293
294 asocket *create_local_socket(int fd);
295 asocket *create_local_service_socket(const char *destination);
296
297 asocket *create_remote_socket(unsigned id, atransport *t);
298 void connect_to_remote(asocket *s, const char *destination);
299 void connect_to_smartsocket(asocket *s);
300
301 void fatal(const char *fmt, ...);
302 void fatal_errno(const char *fmt, ...);
303
304 void handle_packet(apacket *p, atransport *t);
305 void send_packet(apacket *p, atransport *t);
306
307 void get_my_path(char *s, size_t maxLen);
308 int launch_server(int server_port);
309 int sdb_main(int is_daemon, int server_port);
310
311
312 /* transports are ref-counted
313 ** get_device_transport does an acquire on your behalf before returning
314 */
315 void init_transport_registration(void);
316 int  list_transports(char *buf, size_t  bufsize);
317 void update_transports(void);
318 void broadcast_transport(apacket *p);
319 int get_connected_count(transport_type type);
320
321 asocket*  create_device_tracker(void);
322
323 /* Obtain a transport from the available transports.
324 ** If state is != CS_ANY, only transports in that state are considered.
325 ** If serial is non-NULL then only the device with that serial will be chosen.
326 ** If no suitable transport is found, error is set.
327 */
328 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
329 void   add_transport_disconnect( atransport*  t, adisconnect*  dis );
330 void   remove_transport_disconnect( atransport*  t, adisconnect*  dis );
331 void   run_transport_disconnects( atransport*  t );
332 void   kick_transport( atransport*  t );
333
334 /* initialize a transport object's func pointers and state */
335 #if SDB_HOST
336 int get_available_local_transport_index();
337 #endif
338 int  init_socket_transport(atransport *t, int s, int port, int local);
339 void init_usb_transport(atransport *t, usb_handle *usb, int state);
340
341 /* for MacOS X cleanup */
342 void close_usb_devices();
343
344 /* cause new transports to be init'd and added to the list */
345 void register_socket_transport(int s, const char *serial, int port, int local, const char *device_name);
346
347 /* these should only be used for the "sdb disconnect" command */
348 void unregister_transport(atransport *t);
349 void unregister_all_tcp_transports();
350
351 void register_usb_transport(usb_handle *h, const char *serial, unsigned writeable);
352
353 /* this should only be used for transports with connection_state == CS_NOPERM */
354 void unregister_usb_transport(usb_handle *usb);
355
356 atransport *find_transport(const char *serial);
357 #if SDB_HOST
358 atransport* find_emulator_transport_by_sdb_port(int sdb_port);
359 #endif
360
361 int service_to_fd(const char *name);
362 #if SDB_HOST
363 asocket *host_service_to_socket(const char*  name, const char *serial);
364 #endif
365
366 #if !SDB_HOST
367 int       init_jdwp(void);
368 asocket*  create_jdwp_service_socket();
369 asocket*  create_jdwp_tracker_service_socket();
370 int       create_jdwp_connection_fd(int  jdwp_pid);
371 #endif
372
373 #if !SDB_HOST
374 typedef enum {
375     BACKUP,
376     RESTORE
377 } BackupOperation;
378 int backup_service(BackupOperation operation, char* args);
379 void framebuffer_service(int fd, void *cookie);
380 void log_service(int fd, void *cookie);
381 void remount_service(int fd, void *cookie);
382 char * get_log_file_path(const char * log_name);
383
384 extern int rootshell_mode; // 0: sdk user, 1: root
385 extern int booting_done; // 0: platform booting is in progess 1: platform booting is done
386
387 // This is the users and groups config for the platform
388
389 #define SID_ROOT        0    /* traditional unix root user */
390
391 #define SDK_USER_NAME   tzplatform_getenv(TZ_SDK_USER_NAME)
392 #define SDK_TOOL_PATH   tzplatform_getenv(TZ_SDK_TOOLS)
393 #define STATIC_SDK_USER_ID      5001
394 #define STATIC_SDK_GROUP_ID     100
395 #define STATIC_SDK_HOME_DIR     "/home/owner"
396 extern uid_t g_sdk_user_id;
397 extern gid_t g_sdk_group_id;
398 extern char* g_sdk_home_dir;
399 extern char* g_sdk_home_dir_env;
400 #endif
401
402 int is_pwlocked(void);
403 int should_drop_privileges(void);
404 int set_sdk_user_privileges();
405 void set_root_privileges();
406
407 int get_emulator_forward_port(void);
408 int get_emulator_name(char str[], int str_size);
409 int get_device_name(char str[], int str_size);
410 int get_emulator_hostip(char str[], int str_size);
411 int get_emulator_guestip(char str[], int str_size);
412
413 /* packet allocator */
414 apacket *get_apacket(void);
415 void put_apacket(apacket *p);
416
417 int check_header(apacket *p);
418 int check_data(apacket *p);
419
420 /* define SDB_TRACE to 1 to enable tracing support, or 0 to disable it */
421
422 #define  SDB_TRACE    1
423
424 /* IMPORTANT: if you change the following list, don't
425  * forget to update the corresponding 'tags' table in
426  * the sdb_trace_init() function implemented in sdb.c
427  */
428 typedef enum {
429     TRACE_SDB = 0,
430     TRACE_SOCKETS,
431     TRACE_PACKETS,
432     TRACE_TRANSPORT,
433     TRACE_RWX,
434     TRACE_USB,
435     TRACE_SYNC,
436     TRACE_SYSDEPS,
437     TRACE_JDWP,
438     TRACE_SERVICES,
439     TRACE_PROPERTIES,
440     TRACE_SDKTOOLS
441 } SdbTrace;
442
443 #if SDB_TRACE
444
445 #if !SDB_HOST
446 /*
447  * When running inside the emulator, guest's sdbd can connect to 'sdb-debug'
448  * qemud service that can display sdb trace messages (on condition that emulator
449  * has been started with '-debug sdb' option).
450  */
451
452 /* Delivers a trace message to the emulator via QEMU pipe. */
453 void sdb_qemu_trace(const char* fmt, ...);
454 /* Macro to use to send SDB trace messages to the emulator. */
455 #define DQ(...)    sdb_qemu_trace(__VA_ARGS__)
456 #else
457 #define DQ(...) ((void)0)
458 #endif  /* !SDB_HOST */
459
460   extern int     sdb_trace_mask;
461   extern unsigned char    sdb_trace_output_count;
462   void    sdb_trace_init(void);
463
464 #  define SDB_TRACING  ((sdb_trace_mask & (1 << TRACE_TAG)) != 0)
465
466   /* you must define TRACE_TAG before using this macro */
467 #  define  D(...)                                      \
468         do {                                           \
469             if (SDB_TRACING) {                         \
470                 int save_errno = errno;                \
471                 sdb_mutex_lock(&D_lock);               \
472                 fprintf(stderr, "%s::%s():",           \
473                         __FILE__, __FUNCTION__);       \
474                 errno = save_errno;                    \
475                 fprintf(stderr, __VA_ARGS__ );         \
476                 fflush(stderr);                        \
477                 sdb_mutex_unlock(&D_lock);             \
478                 errno = save_errno;                    \
479            }                                           \
480         } while (0)
481 #  define  DR(...)                                     \
482         do {                                           \
483             if (SDB_TRACING) {                         \
484                 int save_errno = errno;                \
485                 sdb_mutex_lock(&D_lock);               \
486                 errno = save_errno;                    \
487                 fprintf(stderr, __VA_ARGS__ );         \
488                 fflush(stderr);                        \
489                 sdb_mutex_unlock(&D_lock);             \
490                 errno = save_errno;                    \
491            }                                           \
492         } while (0)
493 #else
494 #  define  D(...)          ((void)0)
495 #  define  DR(...)         ((void)0)
496 #  define  SDB_TRACING     0
497 #endif
498
499
500 #if !TRACE_PACKETS
501 #define print_packet(tag,p) do {} while (0)
502 #endif
503
504 #if SDB_HOST_ON_TARGET
505 /* sdb and sdbd are coexisting on the target, so use 26099 for sdb
506  * to avoid conflicting with sdbd's usage of 26098
507  */
508 #  define DEFAULT_SDB_PORT 26099 /* tizen specific */
509 #else
510 #  define DEFAULT_SDB_PORT 26099 /* tizen specific */
511 #endif
512
513 #  define QEMU_FORWARD_IP "10.0.2.2"
514
515 #define DEFAULT_SDB_LOCAL_TRANSPORT_PORT 26101 /* tizen specific */
516 #define DEFAULT_SENSORS_LOCAL_TRANSPORT_PORT 26103 /* tizen specific */
517
518 #define SDB_CLASS              0xff
519 #define SDB_SUBCLASS           0x20 //0x42 /* tizen specific */
520 #define SDB_PROTOCOL           0x02 //0x01 /* tizen specific */
521
522
523 void local_init(int port);
524 int  local_connect(int  port, const char *device_name);
525 int  local_connect_arbitrary_ports(int console_port, int sdb_port, const char *device_name);
526
527 /* usb host/client interface */
528 #if SDB_HOST
529 void usb_init();
530 void usb_cleanup();
531 int usb_write(usb_handle *h, const void *data, int len);
532 int usb_read(usb_handle *h, void *data, size_t len);
533 int usb_close(usb_handle *h);
534 void usb_kick(usb_handle *h);
535 #else
536
537 extern void (*usb_init)();
538 extern void (*usb_cleanup)();
539 extern int (*usb_write)(usb_handle *h, const void *data, int len);
540 extern int (*usb_read)(usb_handle *h, void *data, size_t len);
541 extern int (*usb_close)(usb_handle *h);
542 extern void (*usb_kick)(usb_handle *h);
543
544 /* functionfs backend */
545 void ffs_usb_init();
546 void ffs_usb_cleanup();
547 int ffs_usb_write(usb_handle *h, const void *data, int len);
548 int ffs_usb_read(usb_handle *h, void *data, size_t len);
549 int ffs_usb_close(usb_handle *h);
550 void ffs_usb_kick(usb_handle *h);
551
552 /* kernel sdb gadget backend */
553 void linux_usb_init();
554 void linux_usb_cleanup();
555 int linux_usb_write(usb_handle *h, const void *data, int len);
556 int linux_usb_read(usb_handle *h, void *data, size_t len);
557 int linux_usb_close(usb_handle *h);
558 void linux_usb_kick(usb_handle *h);
559
560 #endif
561
562 /* used for USB device detection */
563 #if SDB_HOST
564 int is_sdb_interface(int vid, int pid, int usb_class, int usb_subclass, int usb_protocol);
565 #endif
566
567 unsigned host_to_le32(unsigned n);
568 int sdb_commandline(int argc, char **argv);
569
570 int connection_state(atransport *t);
571
572 #define CS_ANY       -1
573 #define CS_OFFLINE    0
574 #define CS_BOOTLOADER 1
575 #define CS_DEVICE     2
576 #define CS_HOST       3
577 #define CS_RECOVERY   4
578 #define CS_NOPERM     5 /* Insufficient permissions to communicate with the device */
579 #define CS_SIDELOAD   6
580 #define CS_PWLOCK     10
581
582 extern int HOST;
583 extern int SHELL_EXIT_NOTIFY_FD;
584 #if !SDB_HOST
585 extern SdbdCommandlineArgs sdbd_commandline_args;
586 #endif
587
588 #define CHUNK_SIZE (64*1024)
589
590 int sendfailmsg(int fd, const char *reason);
591 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
592 int copy_packet(apacket* dest, apacket* src);
593
594 int is_emulator(void);
595 #define DEFAULT_DEVICENAME "unknown"
596
597 #if SDB_HOST /* tizen-specific */
598 #define DEVICEMAP_SEPARATOR ":"
599 #define DEVICENAME_MAX 256
600 #define VMS_PATH OS_PATH_SEPARATOR_STR "vms" OS_PATH_SEPARATOR_STR // should include sysdeps.h above
601
602 void register_device_name(const char *device_type, const char *device_name, int port);
603 int get_devicename_from_shdmem(int port, char *device_name);
604 int read_line(const int fd, char* ptr, const size_t maxlen);
605 #endif
606 #endif
607
608 #define USB_FUNCFS_SDB_PATH "/dev/usbgadget/sdb"
609 #define USB_NODE_FILE "/dev/samsung_sdb"