| 
									
										
										
										
											2016-01-26 18:17:06 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-08 14:48:46 +00:00
										 |  |  | #include "hw/xen/xen-legacy-backend.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:46 +01:00
										 |  |  | #include "qemu/option.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/blockdev.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:57 +02:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int xen_config_dev_dirs(const char *ftype, const char *btype, int vdev, | 
					
						
							| 
									
										
										
										
											2018-12-13 23:37:37 +01:00
										 |  |  |                                char *fe, char *be, int len) | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     char *dom; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 11:05:16 +00:00
										 |  |  |     dom = qemu_xen_xs_get_domain_path(xenstore, xen_domid); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     snprintf(fe, len, "%s/device/%s/%d", dom, ftype, vdev); | 
					
						
							|  |  |  |     free(dom); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 11:05:16 +00:00
										 |  |  |     dom = qemu_xen_xs_get_domain_path(xenstore, 0); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     snprintf(be, len, "%s/backend/%s/%d/%d", dom, btype, xen_domid, vdev); | 
					
						
							|  |  |  |     free(dom); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 16:13:40 +02:00
										 |  |  |     xenstore_mkdir(fe, XS_PERM_READ | XS_PERM_WRITE); | 
					
						
							|  |  |  |     xenstore_mkdir(be, XS_PERM_READ); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int xen_config_dev_all(char *fe, char *be) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* frontend */ | 
					
						
							|  |  |  |     if (xen_protocol) | 
					
						
							|  |  |  |         xenstore_write_str(fe, "protocol", xen_protocol); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xenstore_write_int(fe, "state",           XenbusStateInitialising); | 
					
						
							|  |  |  |     xenstore_write_int(fe, "backend-id",      0); | 
					
						
							|  |  |  |     xenstore_write_str(fe, "backend",         be); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* backend */ | 
					
						
							|  |  |  |     xenstore_write_str(be, "domain",          qemu_name ? qemu_name : "no-name"); | 
					
						
							|  |  |  |     xenstore_write_int(be, "online",          1); | 
					
						
							|  |  |  |     xenstore_write_int(be, "state",           XenbusStateInitialising); | 
					
						
							|  |  |  |     xenstore_write_int(be, "frontend-id",     xen_domid); | 
					
						
							|  |  |  |     xenstore_write_str(be, "frontend",        fe); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int xen_config_dev_blk(DriveInfo *disk) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:49 +02:00
										 |  |  |     char fe[256], be[256], device_name[32]; | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     int vdev = 202 * 256 + 16 * disk->unit; | 
					
						
							| 
									
										
										
										
											2011-05-16 15:04:56 +02:00
										 |  |  |     int cdrom = disk->media_cd; | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     const char *devtype = cdrom ? "cdrom" : "disk"; | 
					
						
							|  |  |  |     const char *mode    = cdrom ? "r"     : "w"; | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:50 +02:00
										 |  |  |     const char *filename = qemu_opt_get(disk->opts, "file"); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:49 +02:00
										 |  |  |     snprintf(device_name, sizeof(device_name), "xvd%c", 'a' + disk->unit); | 
					
						
							| 
									
										
										
										
											2016-10-25 08:50:14 +03:00
										 |  |  |     xen_pv_printf(NULL, 1, "config disk %d [%s]: %s\n", | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:50 +02:00
										 |  |  |                   disk->unit, device_name, filename); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     xen_config_dev_dirs("vbd", "qdisk", vdev, fe, be, sizeof(fe)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* frontend */ | 
					
						
							|  |  |  |     xenstore_write_int(fe, "virtual-device",  vdev); | 
					
						
							|  |  |  |     xenstore_write_str(fe, "device-type",     devtype); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* backend */ | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:49 +02:00
										 |  |  |     xenstore_write_str(be, "dev",             device_name); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     xenstore_write_str(be, "type",            "file"); | 
					
						
							| 
									
										
										
										
											2012-06-13 10:11:50 +02:00
										 |  |  |     xenstore_write_str(be, "params",          filename); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     xenstore_write_str(be, "mode",            mode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* common stuff */ | 
					
						
							|  |  |  |     return xen_config_dev_all(fe, be); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int xen_config_dev_nic(NICInfo *nic) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char fe[256], be[256]; | 
					
						
							|  |  |  |     char mac[20]; | 
					
						
							| 
									
										
										
										
											2012-08-04 19:29:55 +08:00
										 |  |  |     int vlan_id = -1; | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-04 19:29:55 +08:00
										 |  |  |     net_hub_id_for_client(nic->netdev, &vlan_id); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     snprintf(mac, sizeof(mac), "%02x:%02x:%02x:%02x:%02x:%02x", | 
					
						
							| 
									
										
										
										
											2011-07-20 12:20:22 +02:00
										 |  |  |              nic->macaddr.a[0], nic->macaddr.a[1], nic->macaddr.a[2], | 
					
						
							|  |  |  |              nic->macaddr.a[3], nic->macaddr.a[4], nic->macaddr.a[5]); | 
					
						
							| 
									
										
										
										
											2016-10-25 08:50:14 +03:00
										 |  |  |     xen_pv_printf(NULL, 1, "config nic %d: mac=\"%s\"\n", vlan_id, mac); | 
					
						
							| 
									
										
										
										
											2012-08-04 19:29:55 +08:00
										 |  |  |     xen_config_dev_dirs("vif", "qnic", vlan_id, fe, be, sizeof(fe)); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* frontend */ | 
					
						
							| 
									
										
										
										
											2012-08-04 19:29:55 +08:00
										 |  |  |     xenstore_write_int(fe, "handle",     vlan_id); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     xenstore_write_str(fe, "mac",        mac); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* backend */ | 
					
						
							| 
									
										
										
										
											2012-08-04 19:29:55 +08:00
										 |  |  |     xenstore_write_int(be, "handle",     vlan_id); | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:39 +00:00
										 |  |  |     xenstore_write_str(be, "mac",        mac); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* common stuff */ | 
					
						
							|  |  |  |     return xen_config_dev_all(fe, be); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-22 15:19:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int xen_config_dev_vfb(int vdev, const char *type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char fe[256], be[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xen_config_dev_dirs("vfb", "vfb", vdev, fe, be, sizeof(fe)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* backend */ | 
					
						
							|  |  |  |     xenstore_write_str(be, "type",  type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* common stuff */ | 
					
						
							|  |  |  |     return xen_config_dev_all(fe, be); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int xen_config_dev_vkbd(int vdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char fe[256], be[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xen_config_dev_dirs("vkbd", "vkbd", vdev, fe, be, sizeof(fe)); | 
					
						
							|  |  |  |     return xen_config_dev_all(fe, be); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int xen_config_dev_console(int vdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char fe[256], be[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xen_config_dev_dirs("console", "console", vdev, fe, be, sizeof(fe)); | 
					
						
							|  |  |  |     return xen_config_dev_all(fe, be); | 
					
						
							|  |  |  | } |