mirror of
				https://git.proxmox.com/git/grub2
				synced 2025-11-04 07:23:56 +00:00 
			
		
		
		
	Make the format of Environment Block plain text. The boot loader
    part is not tested well yet.
    
    * util/grub-editenv.c (DEFAULT_ENVBLK_SIZE): New macro.
    (buffer): Removed.
    (envblk): Likewise.
    (usage): Remove "info" and "clear". Add "unset". Update the
    description of "set", as this does not delete variables any
    longer.
    (create_envblk_file): Complete rewrite.
    (open_envblk_file): Likewise.
    (cmd_info): Removed.
    (cmd_list): Likewise.
    (cmd_set): Likewise.
    (cmd_clear): Likewise.
    (list_variables): New function.
    (write_envblk): Likewise.
    (set_variables): Likewise.
    (unset_variables): Likewise.
    (main): Complete rewrite.
    * commands/loadenv.c (buffer): Removed.
    (envblk): Likewise.
    (open_envblk_file): New function.
    (read_envblk_file): Complete rewrite.
    (grub_cmd_load_env): Likewise.
    (grub_cmd_list_env): Likewise.
    (struct blocklist): New struct.
    (free_blocklists): New function.
    (check_blocklists): Likewise.
    (write_blocklists): Likewise.
    (grub_cmd_save_env): Complete rewrite.
    * include/grub/lib/envblk.h (GRUB_ENVBLK_SIGNATURE): Replaced with
    a plain text signature.
    (GRUB_ENVBLK_MAXLEN): Removed.
    (struct grub_envblk): Complete rewrite.
    (grub_envblk_find): Removed.
    (grub_envblk_insert): Likewise.
    (grub_envblk_open): New prototype.
    (grub_envblk_set): Likewise.
    (grub_envblk_delete): Put const to VALUE.
    (grub_envblk_iterate): Put const to NAME and VALUE.
    (grub_envblk_close): New prototype.
    (grub_envblk_buffer): New inline function.
    (grub_envblk_size): Likewise.
    * lib/envblk.c: Include grub/mm.h.
    (grub_env_find): Removed.
    (grub_envblk_open): New function.
    (grub_envblk_close): Likewise.
    (escaped_value_len): Likewise.
    (find_next_line): Likewise.
    (grub_envblk_insert): Removed.
    (grub_envblk_set): New function.
    (grub_envblk_delete): Complete rewrite.
    (grub_envblk_iterate): Likewise.
		
	
			
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 *  GRUB  --  GRand Unified Bootloader
 | 
						|
 *  Copyright (C) 2008,2009  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 <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef GRUB_ENVBLK_HEADER
 | 
						|
#define GRUB_ENVBLK_HEADER	1
 | 
						|
 | 
						|
#define GRUB_ENVBLK_SIGNATURE	"# GRUB Environment Block\n"
 | 
						|
#define GRUB_ENVBLK_DEFCFG	"grubenv"
 | 
						|
 | 
						|
#ifndef ASM_FILE
 | 
						|
 | 
						|
struct grub_envblk
 | 
						|
{
 | 
						|
  char *buf;
 | 
						|
  grub_size_t size;
 | 
						|
};
 | 
						|
typedef struct grub_envblk *grub_envblk_t;
 | 
						|
 | 
						|
grub_envblk_t grub_envblk_open (char *buf, grub_size_t size);
 | 
						|
int grub_envblk_set (grub_envblk_t envblk, const char *name, const char *value);
 | 
						|
void grub_envblk_delete (grub_envblk_t envblk, const char *name);
 | 
						|
void grub_envblk_iterate (grub_envblk_t envblk,
 | 
						|
                          int hook (const char *name, const char *value));
 | 
						|
void grub_envblk_close (grub_envblk_t envblk);
 | 
						|
 | 
						|
static inline char *
 | 
						|
grub_envblk_buffer (const grub_envblk_t envblk)
 | 
						|
{
 | 
						|
  return envblk->buf;
 | 
						|
}
 | 
						|
 | 
						|
static inline grub_size_t
 | 
						|
grub_envblk_size (const grub_envblk_t envblk)
 | 
						|
{
 | 
						|
  return envblk->size;
 | 
						|
}
 | 
						|
 | 
						|
#endif /* ! ASM_FILE */
 | 
						|
 | 
						|
#endif /* ! GRUB_ENVBLK_HEADER */
 |