/* ofnet.c - Driver to provide access to the ofnet filesystem */ /* * GRUB -- GRand Unified Bootloader * Copyright (C) 2008 Free Software Foundation, Inc. * * GRUB is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GRUB is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GRUB. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define BUFFERADDR 0X00000000 #define BUFFERSIZE 0x02000000 #define U64MAXSIZE 18446744073709551615ULL //static grub_ieee1275_ihandle_t handle = 0; static const char * find_sep (const char *name) { const char *p = name; char c = *p; if (c == '\0') return NULL; do { if (c == '\\' && *p == ',') p++; else if (c == ',') return p - 1; } while ((c = *p++) != '\0'); return p - 1; } static grub_err_t retrieve_field(const char *src, char **field, const char **rest) { const char *p; grub_size_t len; p = find_sep(src); if (! p) { *field = NULL; *rest = src; return 0; } len = p - src; *field = grub_malloc (len + 1); if (! *field) { return grub_error (GRUB_ERR_OUT_OF_MEMORY, "fail to alloc memory"); } grub_memcpy (*field, src, len); (*field)[len] = '\0'; if (*p == '\0') *rest = p; else *rest = p + 1; return 0; } static grub_err_t parse_ip (const char *val, grub_uint32_t *ip, const char **rest) { grub_uint32_t newip = 0; unsigned long t; int i; const char *ptr = val; for (i = 0; i < 4; i++) { t = grub_strtoul (ptr, (char **) &ptr, 0); if (grub_errno) return grub_errno; if (t & ~0xff) return grub_error (GRUB_ERR_OUT_OF_RANGE, "Invalid IP."); newip >>= 8; newip |= (t << 24); if (i != 3 && *ptr != '.') return grub_error (GRUB_ERR_OUT_OF_RANGE, "Invalid IP."); ptr++; } ptr = ptr - 1; if ( *ptr != '\0' && *ptr != ',') return grub_error (GRUB_ERR_OUT_OF_RANGE, "Invalid IP."); *ip = newip; if (rest) *rest = ptr; return 0; } static int grub_ofnet_iterate (int (*hook) (const char *name)) { if (hook ("net")) return 1; return 0; } static grub_err_t grub_ofnet_open (const char *name, grub_disk_t disk) { grub_err_t err; const char *p1, *p2; char *user = NULL, *pwd = NULL; grub_netdisk_data_t data; grub_netdisk_protocol_t proto; grub_uint32_t server_ip = 0; if (grub_strcmp (name, "net")) return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "not a net disk"); p1 = find_sep(disk->name); if (! p1 || *p1 == '\0') return grub_error (GRUB_ERR_BAD_ARGUMENT, "arguments missing"); p1++; // parse protocol p2 = find_sep(p1); if (! p2) return grub_error (GRUB_ERR_BAD_ARGUMENT, "no protocol specified"); if ((p2 - p1 == 4) && (! grub_strncasecmp(p1, "tftp", p2 - p1))) proto = GRUB_NETDISK_PROTOCOL_TFTP; else return grub_error (GRUB_ERR_BAD_ARGUMENT, "invalid protocol specified"); // parse server ip if ( *p2 == '\0') return grub_error (GRUB_ERR_BAD_ARGUMENT, "no server ip specified"); p1 = p2 + 1; err = parse_ip(p1, &server_ip, &p2); if (err) return err; // parse username (optional) if ( *p2 == ',') p2++; err = retrieve_field(p2, &user, &p1); if (err) return err; if (user) { // parse password (optional) err = retrieve_field(p1, &pwd, &p2); if (err) { grub_free(user); return err; } } if (! disk->data) { data = grub_malloc (sizeof(*data)); disk->data = data; } else { data = disk->data; if (data->username) grub_free(data->username); if (data->password) grub_free(data->password); } data->protocol = proto; data->server_ip = server_ip; data->username = user; data->password = pwd; disk->total_sectors = 0; disk->id = (unsigned long) "net"; disk->has_partitions = 0; return GRUB_ERR_NONE; } static void grub_ofnet_close (grub_disk_t disk) { grub_netdisk_data_t data = disk->data; if (data) { if (data->username) grub_free(data->username); if (data->password) grub_free(data->password); grub_free(data); } } static grub_err_t grub_ofnet_read (grub_disk_t disk __attribute((unused)), grub_disk_addr_t sector __attribute((unused)), grub_size_t size __attribute((unused)), char *buf __attribute((unused))) { return GRUB_ERR_NONE; } static grub_err_t grub_ofnet_write (grub_disk_t disk __attribute((unused)), grub_disk_addr_t sector __attribute((unused)), grub_size_t size __attribute((unused)), const char *buf __attribute((unused))) { return GRUB_ERR_NONE; } static struct grub_disk_dev grub_ofnet_dev = { .name = "net", .id = GRUB_DISK_DEVICE_OFNET_ID, .iterate = grub_ofnet_iterate, .open = grub_ofnet_open, .close = grub_ofnet_close, .read = grub_ofnet_read, .write = grub_ofnet_write, .next = 0 }; static grub_err_t grub_ofnetfs_dir (grub_device_t device , const char *path __attribute((unused)), int (*hook) (const char *filename, const struct grub_dirhook_info *info) __attribute((unused))) { if(grub_strncmp (device->disk->name,"net",3)) { return grub_error (GRUB_ERR_BAD_FS, "not an net filesystem"); } return GRUB_ERR_NONE; } static grub_ssize_t grub_ofnetfs_read (grub_file_t file, char *buf, grub_size_t len) { grub_size_t actual; actual = len <= (file->size - file->offset)?len:file->size - file->offset; grub_memcpy(buf, (void *)( (grub_addr_t) file->data + (grub_addr_t)file->offset), actual); return actual; } static grub_err_t grub_ofnetfs_close (grub_file_t file) { grub_ieee1275_release ((grub_addr_t) file->data,file->size); return GRUB_ERR_NONE; } static grub_err_t grub_ofnetfs_open (struct grub_file *file , const char *name ) { //void *buffer; //grub_addr_t addr; if (name[0] == '/') name++; if(grub_strncmp (file->device->disk->name,"net",3)) { return 1; } // grub_printf("name = %s\n",name); struct grub_net_protocol_stack *stack; struct grub_net_buff *pack; struct grub_net_application_transport_interface *app_interface; int file_size; char *datap; int amount = 0; grub_addr_t found_addr; stack = grub_net_protocol_stack_get ("tftp"); app_interface = (struct grub_net_application_transport_interface *) stack->interface; pack = grub_netbuff_alloc (80*1024); grub_netbuff_reserve (pack,80*1024); file_size = app_interface->app_prot->get_file_size(NULL,stack,pack,(char *) name); for (found_addr = 0x800000; found_addr < + 2000 * 0x100000; found_addr += 0x100000) { if (grub_claimmap (found_addr , file_size) != -1) break; } file->data = (void *) found_addr; grub_netbuff_clear(pack); grub_netbuff_reserve (pack,80*1024); app_interface->app_prot->open (NULL,stack,pack,(char *) name); if (grub_errno != GRUB_ERR_NONE) goto error; do { grub_netbuff_clear(pack); grub_netbuff_reserve (pack,80*1024); app_interface->app_prot->recv (NULL,stack,pack); if (grub_errno != GRUB_ERR_NONE) goto error; if ((pack->tail - pack->data)) { // file->data = grub_realloc(file->data,amount + pack->tail - pack->data); datap = (char *)file->data + amount; amount += (pack->tail - pack->data); grub_memcpy(datap , pack->data, pack->tail - pack->data); } grub_netbuff_clear(pack); grub_netbuff_reserve (pack,80*1024); app_interface->app_prot->send_ack (NULL,stack,pack); if (grub_errno != GRUB_ERR_NONE) goto error; }while (amount < file_size); file->size = file_size; error: grub_netbuff_free(pack); return grub_errno; } static grub_err_t grub_ofnetfs_label (grub_device_t device __attribute ((unused)), char **label __attribute ((unused))) { *label = 0; return GRUB_ERR_NONE; } static struct grub_fs grub_ofnetfs_fs = { .name = "ofnetfs", .dir = grub_ofnetfs_dir, .open = grub_ofnetfs_open, .read = grub_ofnetfs_read, .close = grub_ofnetfs_close, .label = grub_ofnetfs_label, .next = 0 }; static char * grub_ieee1275_get_devargs (const char *path) { int len; char *colon = grub_strchr (path, ':'); len = colon - path; if (! colon) return 0; return grub_strndup (path,len); } static int grub_ofnet_detect (void) { char *devalias; char bootpath[64]; /* XXX check length */ grub_ieee1275_phandle_t root; grub_uint32_t net_type; grub_ieee1275_finddevice ("/chosen", &grub_ieee1275_chosen); if (grub_ieee1275_get_property (grub_ieee1275_chosen, "bootpath", &bootpath, sizeof (bootpath), 0)) { /* Should never happen. */ grub_printf ("/chosen/bootpath property missing!\n"); return 0; } devalias = grub_ieee1275_get_aliasdevname (bootpath); if (grub_strncmp(devalias ,"net",3)) return 0; grub_net = grub_malloc (sizeof *grub_net ); grub_net->name = "net"; grub_net->dev = grub_ieee1275_get_devargs (bootpath); grub_ieee1275_finddevice ("/", &root); grub_ieee1275_get_integer_property (root, "ibm,fw-net-compatibility", &net_type, sizeof net_type, 0); grub_printf("root = %d\n",root); grub_printf("net_type= %d\n",net_type); grub_net->type = net_type; return 1; } #define IPMASK 0x000000FF #define IPSIZE 16 #define IPTEMPLATE "%d.%d.%d.%d" char * grub_ip2str (grub_uint32_t ip) { char* str_ip; // str_ip = grub_malloc(IPSIZE); str_ip = grub_xasprintf (IPTEMPLATE, ip >> 24 & IPMASK, ip >> 16 & IPMASK, ip >> 8 & IPMASK, ip & IPMASK); grub_printf ("str_ip = %s\n",str_ip); grub_printf ("template = "IPTEMPLATE"\n" , ip >> 24 & IPMASK, ip >> 16 & IPMASK, ip >> 8 & IPMASK, ip & IPMASK); return str_ip; } void grub_get_netinfo (grub_ofnet_t netinfo,grub_bootp_t packet) { netinfo->sip = grub_ip2str(packet->siaddr); netinfo->cip = grub_ip2str(packet->yiaddr); netinfo->gat = grub_ip2str(packet->giaddr); grub_printf("packet->siaddr = %x\n",packet->siaddr); grub_printf("netinfo-> = %s\n",netinfo->sip); grub_printf("packet->yiaddr = %x\n",packet->yiaddr); grub_printf("netinfo-> = %s\n",netinfo->cip); grub_printf("packet->giaddr = %x\n",packet->giaddr); grub_printf("netinfo-> = %s\n",netinfo->gat); } void grub_ofnet_init(void) { tftp_ini (); bootp_pckt = grub_getbootp (); if(grub_ofnet_detect ()) { grub_get_netinfo (grub_net, bootp_pckt ); grub_disk_dev_register (&grub_ofnet_dev); grub_fs_register (&grub_ofnetfs_fs); card_open (); } } void grub_ofnet_fini(void) { grub_fs_unregister (&grub_ofnetfs_fs); grub_disk_dev_unregister (&grub_ofnet_dev); }