Whamcloud - gitweb
LU-5844 get rid of IOC_LIBCFS_MEMHOG and IOC_LIBCFS_PANIC ioctls
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs_ioctl.h
index 6d8781f..7636fd8 100644 (file)
@@ -36,7 +36,7 @@
  * libcfs/include/libcfs/libcfs_ioctl.h
  *
  * Low-level ioctl data structures. Kernel ioctl functions declared here,
- * and user space functions are in libcfsutil_ioctl.h.
+ * and user space functions are in libcfs/util/ioctl.h.
  *
  */
 
@@ -101,34 +101,17 @@ do {                                                      \
        (data).hdr.ioc_len = sizeof(data);              \
 } while (0)
 
-
-#ifdef __KERNEL__
-
-struct libcfs_ioctl_handler {
-       struct list_head item;
-       int (*handle_ioctl)(unsigned int cmd, struct libcfs_ioctl_hdr *hdr);
-};
-
-#define DECLARE_IOCTL_HANDLER(ident, func)                     \
-       static struct libcfs_ioctl_handler ident = {            \
-               /* .item = */ LIST_HEAD_INIT(ident.item),       \
-               /* .handle_ioctl = */ func                      \
-       }
-
-#endif
-
 /* 'f' ioctls are defined in lustre_ioctl.h and lustre_user.h except for: */
 #define LIBCFS_IOC_DEBUG_MASK             _IOWR('f', 250, long)
 #define IOCTL_LIBCFS_TYPE                long
 
-/* ioctls for manipulating snapshots 30- */
 #define IOC_LIBCFS_TYPE                                      ('e')
 #define IOC_LIBCFS_MIN_NR                            30
 /* libcfs ioctls */
-#define IOC_LIBCFS_PANIC                   _IOWR('e', 30, IOCTL_LIBCFS_TYPE)
+/* IOC_LIBCFS_PANIC obsolete in 2.8.0, was _IOWR('e', 30, IOCTL_LIBCFS_TYPE) */
 #define IOC_LIBCFS_CLEAR_DEBUG             _IOWR('e', 31, IOCTL_LIBCFS_TYPE)
 #define IOC_LIBCFS_MARK_DEBUG              _IOWR('e', 32, IOCTL_LIBCFS_TYPE)
-#define IOC_LIBCFS_MEMHOG                  _IOWR('e', 36, IOCTL_LIBCFS_TYPE)
+/* IOC_LIBCFS_MEMHOG obsolete in 2.8.0, was _IOWR('e', 36, IOCTL_LIBCFS_TYPE) */
 /* lnet ioctls */
 #define IOC_LIBCFS_GET_NI                 _IOWR('e', 50, IOCTL_LIBCFS_TYPE)
 #define IOC_LIBCFS_FAIL_NID               _IOWR('e', 51, IOCTL_LIBCFS_TYPE)
@@ -190,89 +173,55 @@ struct libcfs_ioctl_handler {
 static inline int libcfs_ioctl_packlen(struct libcfs_ioctl_data *data)
 {
        int len = sizeof(*data);
-       len += cfs_size_round(data->ioc_inllen1);
-       len += cfs_size_round(data->ioc_inllen2);
+       len += (data->ioc_inllen1 + 7) & ~7;
+       len += (data->ioc_inllen2 + 7) & ~7;
        return len;
 }
 
 static inline bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
 {
-       if (data->ioc_hdr.ioc_len > (1<<30)) {
-               CERROR("LIBCFS ioctl: ioc_len larger than 1<<30\n");
+       if (data->ioc_hdr.ioc_len > (1<<30))
                return 1;
-       }
-       if (data->ioc_inllen1 > (1<<30)) {
-               CERROR("LIBCFS ioctl: ioc_inllen1 larger than 1<<30\n");
+
+       if (data->ioc_inllen1 > (1<<30))
                return 1;
-       }
-       if (data->ioc_inllen2 > (1<<30)) {
-               CERROR("LIBCFS ioctl: ioc_inllen2 larger than 1<<30\n");
+
+       if (data->ioc_inllen2 > (1<<30))
                return 1;
-       }
-       if (data->ioc_inlbuf1 && data->ioc_inllen1 == 0) {
-               CERROR("LIBCFS ioctl: inlbuf1 pointer but 0 length\n");
+
+       if (data->ioc_inlbuf1 && data->ioc_inllen1 == 0)
                return 1;
-       }
-       if (data->ioc_inlbuf2 && data->ioc_inllen2 == 0) {
-               CERROR("LIBCFS ioctl: inlbuf2 pointer but 0 length\n");
+
+       if (data->ioc_inlbuf2 && data->ioc_inllen2 == 0)
                return 1;
-       }
-       if (data->ioc_pbuf1 && data->ioc_plen1 == 0) {
-               CERROR("LIBCFS ioctl: pbuf1 pointer but 0 length\n");
+
+       if (data->ioc_pbuf1 && data->ioc_plen1 == 0)
                return 1;
-       }
-       if (data->ioc_pbuf2 && data->ioc_plen2 == 0) {
-               CERROR("LIBCFS ioctl: pbuf2 pointer but 0 length\n");
+
+       if (data->ioc_pbuf2 && data->ioc_plen2 == 0)
                return 1;
-       }
-       if (data->ioc_plen1 && data->ioc_pbuf1 == NULL) {
-               CERROR("LIBCFS ioctl: plen1 nonzero but no pbuf1 pointer\n");
+
+       if (data->ioc_plen1 && data->ioc_pbuf1 == NULL)
                return 1;
-       }
-       if (data->ioc_plen2 && data->ioc_pbuf2 == NULL) {
-               CERROR("LIBCFS ioctl: plen2 nonzero but no pbuf2 pointer\n");
+
+       if (data->ioc_plen2 && data->ioc_pbuf2 == NULL)
                return 1;
-       }
-       if ((__u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len) {
-               CERROR("LIBCFS ioctl: packlen != ioc_len\n");
+
+       if ((__u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len)
                return 1;
-       }
+
        if (data->ioc_inllen1 &&
-           data->ioc_bulk[data->ioc_inllen1 - 1] != '\0') {
-               CERROR("LIBCFS ioctl: inlbuf1 not 0 terminated\n");
+           data->ioc_bulk[data->ioc_inllen1 - 1] != '\0')
                return 1;
-       }
+
        if (data->ioc_inllen2 &&
-           data->ioc_bulk[cfs_size_round(data->ioc_inllen1) +
-                          data->ioc_inllen2 - 1] != '\0') {
-               CERROR("LIBCFS ioctl: inlbuf2 not 0 terminated\n");
+           data->ioc_bulk[((data->ioc_inllen1 + 7) & ~7) +
+                          data->ioc_inllen2 - 1] != '\0')
                return 1;
-       }
-       return 0;
-}
-
-#ifdef __KERNEL__
-
-extern int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
-extern int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
-extern int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
-                               struct libcfs_ioctl_hdr __user *uparam);
 
-static inline int libcfs_ioctl_popdata(struct libcfs_ioctl_hdr *hdr,
-                                      struct libcfs_ioctl_hdr __user *uparam)
-{
-        if (copy_to_user(uparam, hdr, hdr->ioc_len))
-               return -EFAULT;
-        return 0;
-}
-
-static inline void libcfs_ioctl_freedata(struct libcfs_ioctl_hdr *hdr)
-{
-       LIBCFS_FREE(hdr, hdr->ioc_len);
+       return 0;
 }
 
-#endif
-
 extern int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data);
 
 #endif /* __LIBCFS_IOCTL_H__ */