1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _ERRMSG_H 27 #define _ERRMSG_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 #ifdef __cplusplus 32 extern "C" { 33 #endif 34 35 /* text for gettext error messages for adddrv.c and remdrv.c */ 36 37 #define USAGE "Usage:\n"\ 38 " add_drv [ -m '<permission> ','<...>' ]\n"\ 39 " [ -n ]\n"\ 40 " [ -f ]\n"\ 41 " [ -v ]\n"\ 42 " [ -i '<identify_name <...>' ] \n"\ 43 " [ -b <basedir> ]\n"\ 44 " [ -c <class_name> ]\n"\ 45 " [ -p <dev_policy> ]\n"\ 46 " <driver_module>\n"\ 47 "Example:\n"\ 48 " add_drv -m '* 0666 bin bin' -i 'acme,sd new,sd' sd \n"\ 49 " Add 'sd' drive with identify names: acme,sd and new,sd.\n"\ 50 " Every minor node will have the permission 0666,\n"\ 51 " and be owned by bin with group bin.\n" 52 53 #define BOOT_CLIENT "Reboot client to install driver.\n" 54 #define DRIVER_INSTALLED "Driver (%s) installed.\n" 55 56 #define ERR_INSTALL_FAIL "Error: Could not install driver (%s).\n" 57 #define ERR_DRVNAME_TOO_LONG "Error: driver name must not exceed (%d)" \ 58 " characters; driver name too long (%s)\n" 59 #define ERR_ALIAS_IN_NAM_MAJ \ 60 "Alias (\"%s\") already in use as driver name.\n" 61 #define ERR_ALIAS_IN_USE \ 62 "(\"%s\") already in use as a driver or alias.\n" 63 #define ERR_CANT_ACCESS_FILE "Cannot access file (%s).\n" 64 #define ERR_BAD_PATH "Bad syntax for pathname : (%s)\n" 65 #define ERR_FORK_FAIL "Fork failed; cannot exec : %s\n" 66 #define ERR_PROG_IN_USE "add_drv/rem_drv currently busy; try later\n" 67 #define ERR_NOT_ROOT "You must be root to run this program.\n" 68 #define ERR_BAD_LINE "Bad line in file %s : %s\n" 69 #define ERR_CANNOT_OPEN "Cannot open (%s): %s.\n" 70 #define ERR_MIS_TOK "Option (%s) : missing token: (%s)\n" 71 #define ERR_BAD_TOK "Option (%s) : bad token: (%s)\n" 72 #define ERR_TOO_MANY_ARGS "Option (%s) : too many arguments: (%s)\n" 73 #define ERR_BAD_MODE "Bad mode: (%s)\n" 74 #define ERR_CANT_OPEN "Cannot open (%s)\n" 75 #define ERR_NO_UPDATE "Cannot update (%s)\n" 76 #define ERR_CANT_RM "Cannot remove temporary file (%s); remove by hand.\n" 77 #define ERR_BAD_LINK "(%s) exists as (%s); Please rename by hand.\n" 78 #define ERR_NO_MEM "Not enough memory\n" 79 #define ERR_DEL_ENTRY "Cannot delete entry for driver (%s) from file (%s).\n" 80 #define ERR_NO_ENTRY "No entry found for driver (%s) in file (%s).\n" 81 #define ERR_INT_UPDATE "Internal error updating (%s).\n" 82 #define ERR_NOMOD "Cannot find module (%s).\n" 83 #define ERR_MAX_MAJOR "Cannot get major device information.\n" 84 #define ERR_NO_FREE_MAJOR "No available major numbers.\n" 85 #define ERR_NOT_UNIQUE "Driver (%s) is already installed.\n" 86 #define ERR_NOT_INSTALLED "Driver (%s) not installed.\n" 87 #define ERR_UPDATE "Cannot update (%s).\n" 88 #define ERR_MAX_EXCEEDS "Major number (%d) exceeds maximum (%d).\n" 89 #define ERR_NO_CLEAN "Cannot update; check file %s and rem_drv %s by hand.\n" 90 #define ERR_CONFIG \ 91 "Warning: Driver (%s) successfully added to system but failed to attach\n" 92 #define ERR_DEVTREE \ 93 "Warning: Unable to check for driver configuration conflicts.\n" 94 #define ERR_MODPATH "System error: Could not get module path.\n" 95 #define ERR_BAD_MAJNUM \ 96 "Warning: Major number (%d) inconsistent with /etc/name_to_major file.\n" 97 #define ERR_MAJ_TOOBIG "Warning: Entry '%s %llu' in %s has a major number " \ 98 "larger\nthan the maximum allowed value %u.\n" 99 100 #define ERR_CREAT_LOCK "Failed to create lock file(%s): %s\n" 101 #define ERR_LOCK "Failed to lock the lock file(%s): %s\n" 102 #define ERR_UNLOCK "Failed to unlock the lock file(%s): %s\n" 103 104 #define ERR_LOCATION \ 105 "Warning: %s-bit version of driver found at %s.\n" 106 #define ERR_ISA_MISMATCH "No %s-bit version of (%s) found; %s-bit " \ 107 "version of this driver exists.\n" 108 #define ERR_NOT_LOADABLE \ 109 "%s-bit driver (%s) not loadable on %s-bit kernel.\n" 110 #define ERR_ELF_VERSION "ELF library out of date : %s. \n" 111 #define ERR_ELF_KIND "The file (%s) is not in ELF format.\n" 112 #define ERR_KERNEL_ISA "Could not identify kernel's ISA. \n" 113 #define ERR_CONFIG_NOLOAD \ 114 "System configuration files modified but %s driver not loaded or attached.\n" 115 #define ERR_SOL_LOCATION \ 116 "Place (%s) driver in correct location and run devfsadm -i %s.\n" 117 #define ERR_ARCH_NOT_SUPPORTED "Architecture %s not supported by add_drv.\n" 118 #define ERR_SYSINFO_ARCH "Failed to identify system architecture.\n" 119 #define ERR_PATH_SPEC "Error: driver may not be specified by path (%s)\n" 120 #define ERR_CREATE_RECONFIG "Error: Could not create /reconfigure.\n" 121 122 /* update_drv messages */ 123 #define UPD_DRV_USAGE \ 124 "Usage:\tupdate_drv [ -f | -v ] <driver_module>\n" \ 125 "\tupdate_drv [ -b basedir ] [ -f | -v ] -a\n" \ 126 "\t\t[-m 'permission'] [-i 'identify_name']\n" \ 127 "\t\t[-P privilege] [-p 'policy'] <driver_module>\n" \ 128 "\tupdate_drv [ -b basedir ] [ -f | -v ] -d\n" \ 129 "\t\t[-m 'permission'] [-i 'identify_name']\n" \ 130 "\t\t[-P privilege] [-p 'policy'] <driver_module>\n\n"\ 131 "NOTE: at least one of m/i/P/p must be specified with -a and -d.\n" 132 133 #define FORCE_UPDATE "Forcing update of %s.conf.\n" 134 #define ERR_DRVCONF "Failed to update %s.conf for driver.\n" 135 #define DRVCONF_UPDATED "%s.conf updated in the kernel.\n" 136 #define NOUPDATE "%s.conf not updated in the kernel\n" 137 138 /* remdrv messages */ 139 140 #define REM_USAGE1 "Usage:\n\t rem_drv [ -C ] [ -b <basedir> ] driver_name\n" 141 #define ERR_NO_MAJ "Cannot get major number for : %s\n" 142 #define ERR_UNLINK "Warning: Cannot remove %s from devfs namespace.\n" 143 #define ERR_PIPE "System error : Cannot create pipe\n" 144 #define ERR_EXEC "System error : Exec failed\n" 145 #define ERR_DEVFSCLEAN \ 146 "Warning: Cannot remove entries from devfs namespace for driver : %s.\n" 147 #define ERR_DEVFSALCLEAN \ 148 "Warning: Cannot remove alias entries from devfs namespace for driver : %s .\n" 149 #define ERR_MODID "Cannot get modid for : (%s)\n" 150 #define ERR_MODUN \ 151 "Cannot unload module: %s\nWill be unloaded upon reboot.\n" 152 #define ERR_MODREMMAJ "Cannot remove major number binding for %d\n" 153 #define ERR_NOENTRY "Cannot find (%s) in file : %s\n" 154 155 /* drvsubr messages */ 156 #define ERR_NOFILE "Warning: (%s) file missing.\n" 157 #define ERR_NO_SPACE \ 158 "Can't have space within double quote: %s. \ 159 Use octal escape sequence \"\\040\".\n" 160 161 #define ERR_PRIVIMPL "Cannot get privilege information.\n" 162 #define ERR_BAD_MINOR "Minor device specification cannot include ``:''.\n" 163 #define ERR_BAD_TOKEN "Bad policy token: ``%s''.\n" 164 #define ERR_BAD_PRIVS "Error in privilege set specification: %.*s[HERE->]%s\n" 165 #define ERR_INVALID_PLCY "Invalid policy specification\n" 166 #define ERR_ONLY_ONE "Only one policy entry allowed per invocation\n" 167 #define ERR_NO_EQUALS "Missing equal sign in token ``%s''\n" 168 #define ERR_BAD_PRIV "Cannot allocate privilege ``%s'': %s\n" 169 170 #define ERR_UPDATE_PERM \ 171 "kernel update of permissions for driver %s failed (%d)\n" 172 173 #define ERR_REMDRV_CLEANUP \ 174 "post-rem_drv devfs cleanup for driver %s failed (%d)\n" 175 176 #define ERR_PATH_ORIENTED_ALIAS \ 177 "no device at specified path-oriented alias \"%s\"\n" 178 179 #ifdef __cplusplus 180 } 181 #endif 182 183 #endif /* _ERRMSG_H */ 184