chiark / gitweb /
udevadm: control - remove compat code
authorKay Sievers <kay.sievers@vrfy.org>
Mon, 14 Sep 2009 12:29:05 +0000 (14:29 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Mon, 14 Sep 2009 12:29:05 +0000 (14:29 +0200)
TODO
udev/udevadm-control.c

diff --git a/TODO b/TODO
index e1c06d5c6aab2453c8ebfd09a0c99e33214ed152..583d24e6be5b8d5cb1e4aceb28c2084debfd08dd 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,7 +1,6 @@
 
   o remove most NAME= rules (they are provided by the 2.6.31 kernel)
   o convert firmware.sh to C
 
   o remove most NAME= rules (they are provided by the 2.6.31 kernel)
   o convert firmware.sh to C
-  o "udevadm control" commands will only accept the --<command> syntax
   o get rid of braindead "scan all devices to find myself" libusb interface
       if it can not be fixed, drop libusb entirely
   o remove copy of bsg.h
   o get rid of braindead "scan all devices to find myself" libusb interface
       if it can not be fixed, drop libusb entirely
   o remove copy of bsg.h
index 21d366b23485e94e4270caab8cad1234c7e61887..0fd69b9a0aafdcebfc930c2b817577714dfd874e 100644 (file)
@@ -47,31 +47,24 @@ int udevadm_control(struct udev *udev, int argc, char *argv[])
        /* compat values with '_' will be removed in a future release */
        static const struct option options[] = {
                { "log-priority", required_argument, NULL, 'l' },
        /* compat values with '_' will be removed in a future release */
        static const struct option options[] = {
                { "log-priority", required_argument, NULL, 'l' },
-               { "log_priority", required_argument, NULL, 'l' + 256 },
                { "stop-exec-queue", no_argument, NULL, 's' },
                { "stop-exec-queue", no_argument, NULL, 's' },
-               { "stop_exec_queue", no_argument, NULL, 's' + 256 },
                { "start-exec-queue", no_argument, NULL, 'S' },
                { "start-exec-queue", no_argument, NULL, 'S' },
-               { "start_exec_queue", no_argument, NULL, 'S' + 256},
                { "reload-rules", no_argument, NULL, 'R' },
                { "reload-rules", no_argument, NULL, 'R' },
-               { "reload_rules", no_argument, NULL, 'R' + 256},
                { "property", required_argument, NULL, 'p' },
                { "env", required_argument, NULL, 'p' },
                { "max-childs", required_argument, NULL, 'm' },
                { "property", required_argument, NULL, 'p' },
                { "env", required_argument, NULL, 'p' },
                { "max-childs", required_argument, NULL, 'm' },
-               { "max_childs", required_argument, NULL, 'm' + 256},
                { "help", no_argument, NULL, 'h' },
                {}
        };
 
        if (getuid() != 0) {
                fprintf(stderr, "root privileges required\n");
                { "help", no_argument, NULL, 'h' },
                {}
        };
 
        if (getuid() != 0) {
                fprintf(stderr, "root privileges required\n");
-               goto exit;
+               return 1;
        }
 
        uctrl = udev_ctrl_new_from_socket(udev, UDEV_CTRL_SOCK_PATH);
        }
 
        uctrl = udev_ctrl_new_from_socket(udev, UDEV_CTRL_SOCK_PATH);
-       if (uctrl == NULL) {
-               rc = 2;
-               goto exit;
-       }
+       if (uctrl == NULL)
+               return 2;
 
        while (1) {
                int option;
 
        while (1) {
                int option;
@@ -82,14 +75,8 @@ int udevadm_control(struct udev *udev, int argc, char *argv[])
                if (option == -1)
                        break;
 
                if (option == -1)
                        break;
 
-               if (option > 255) {
-                       err(udev, "udevadm control expects commands without underscore, "
-                           "this will stop working in a future release\n");
-               }
-
                switch (option) {
                case 'l':
                switch (option) {
                case 'l':
-               case 'l' + 256:
                        i = util_log_priority(optarg);
                        if (i < 0) {
                                fprintf(stderr, "invalid number '%s'\n", optarg);
                        i = util_log_priority(optarg);
                        if (i < 0) {
                                fprintf(stderr, "invalid number '%s'\n", optarg);
@@ -101,21 +88,18 @@ int udevadm_control(struct udev *udev, int argc, char *argv[])
                                rc = 0;
                        break;
                case 's':
                                rc = 0;
                        break;
                case 's':
-               case 's' + 256:
                        if (udev_ctrl_send_stop_exec_queue(uctrl) < 0)
                                rc = 2;
                        else
                                rc = 0;
                        break;
                case 'S':
                        if (udev_ctrl_send_stop_exec_queue(uctrl) < 0)
                                rc = 2;
                        else
                                rc = 0;
                        break;
                case 'S':
-               case 'S' + 256:
                        if (udev_ctrl_send_start_exec_queue(uctrl) < 0)
                                rc = 2;
                        else
                                rc = 0;
                        break;
                case 'R':
                        if (udev_ctrl_send_start_exec_queue(uctrl) < 0)
                                rc = 2;
                        else
                                rc = 0;
                        break;
                case 'R':
-               case 'R' + 256:
                        if (udev_ctrl_send_reload_rules(uctrl) < 0)
                                rc = 2;
                        else
                        if (udev_ctrl_send_reload_rules(uctrl) < 0)
                                rc = 2;
                        else
@@ -132,7 +116,6 @@ int udevadm_control(struct udev *udev, int argc, char *argv[])
                                rc = 0;
                        break;
                case 'm':
                                rc = 0;
                        break;
                case 'm':
-               case 'm' + 256:
                        i = strtoul(optarg, &endp, 0);
                        if (endp[0] != '\0' || i < 1) {
                                fprintf(stderr, "invalid number '%s'\n", optarg);
                        i = strtoul(optarg, &endp, 0);
                        if (endp[0] != '\0' || i < 1) {
                                fprintf(stderr, "invalid number '%s'\n", optarg);
@@ -146,55 +129,7 @@ int udevadm_control(struct udev *udev, int argc, char *argv[])
                case 'h':
                        print_help();
                        rc = 0;
                case 'h':
                        print_help();
                        rc = 0;
-                       goto exit;
-               default:
-                       goto exit;
-               }
-       }
-
-       /* compat stuff which will be removed in a future release */
-       if (argv[optind] != NULL) {
-               const char *arg = argv[optind];
-
-               err(udev, "udevadm control commands requires the --<command> format, "
-                   "this will stop working in a future release\n");
-
-               if (!strncmp(arg, "log_priority=", strlen("log_priority="))) {
-                       if (udev_ctrl_send_set_log_level(uctrl, util_log_priority(&arg[strlen("log_priority=")])) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
-               } else if (!strcmp(arg, "stop_exec_queue")) {
-                       if (udev_ctrl_send_stop_exec_queue(uctrl) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
-               } else if (!strcmp(arg, "start_exec_queue")) {
-                       if (udev_ctrl_send_start_exec_queue(uctrl) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
-               } else if (!strcmp(arg, "reload_rules")) {
-                       if (udev_ctrl_send_reload_rules(uctrl) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
-               } else if (!strncmp(arg, "max_childs=", strlen("max_childs="))) {
-                       if (udev_ctrl_send_set_max_childs(uctrl, strtoul(&arg[strlen("max_childs=")], NULL, 0)) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
-               } else if (!strncmp(arg, "env", strlen("env"))) {
-                       if (udev_ctrl_send_set_env(uctrl, &arg[strlen("env=")]) < 0)
-                               rc = 2;
-                       else
-                               rc = 0;
-                       goto exit;
+                       break;
                }
        }
 
                }
        }