|
@@ -41,6 +41,30 @@ static ssize_t ieee80211_if_read(
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+static ssize_t ieee80211_if_write(
|
|
|
+ struct ieee80211_sub_if_data *sdata,
|
|
|
+ const char __user *userbuf,
|
|
|
+ size_t count, loff_t *ppos,
|
|
|
+ ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
|
|
|
+{
|
|
|
+ u8 *buf;
|
|
|
+ ssize_t ret = -ENODEV;
|
|
|
+
|
|
|
+ buf = kzalloc(count, GFP_KERNEL);
|
|
|
+ if (!buf)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ if (copy_from_user(buf, userbuf, count))
|
|
|
+ return -EFAULT;
|
|
|
+
|
|
|
+ rtnl_lock();
|
|
|
+ if (sdata->dev->reg_state == NETREG_REGISTERED)
|
|
|
+ ret = (*write)(sdata, buf, count);
|
|
|
+ rtnl_unlock();
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
#define IEEE80211_IF_FMT(name, field, format_string) \
|
|
|
static ssize_t ieee80211_if_fmt_##name( \
|
|
|
const struct ieee80211_sub_if_data *sdata, char *buf, \
|
|
@@ -71,7 +95,7 @@ static ssize_t ieee80211_if_fmt_##name( \
|
|
|
return scnprintf(buf, buflen, "%pM\n", sdata->field); \
|
|
|
}
|
|
|
|
|
|
-#define __IEEE80211_IF_FILE(name) \
|
|
|
+#define __IEEE80211_IF_FILE(name, _write) \
|
|
|
static ssize_t ieee80211_if_read_##name(struct file *file, \
|
|
|
char __user *userbuf, \
|
|
|
size_t count, loff_t *ppos) \
|
|
@@ -82,12 +106,24 @@ static ssize_t ieee80211_if_read_##name(struct file *file, \
|
|
|
} \
|
|
|
static const struct file_operations name##_ops = { \
|
|
|
.read = ieee80211_if_read_##name, \
|
|
|
+ .write = (_write), \
|
|
|
.open = mac80211_open_file_generic, \
|
|
|
}
|
|
|
|
|
|
+#define __IEEE80211_IF_FILE_W(name) \
|
|
|
+static ssize_t ieee80211_if_write_##name(struct file *file, \
|
|
|
+ const char __user *userbuf, \
|
|
|
+ size_t count, loff_t *ppos) \
|
|
|
+{ \
|
|
|
+ return ieee80211_if_write(file->private_data, userbuf, count, \
|
|
|
+ ppos, ieee80211_if_parse_##name); \
|
|
|
+} \
|
|
|
+__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
|
|
|
+
|
|
|
+
|
|
|
#define IEEE80211_IF_FILE(name, field, format) \
|
|
|
IEEE80211_IF_FMT_##format(name, field) \
|
|
|
- __IEEE80211_IF_FILE(name)
|
|
|
+ __IEEE80211_IF_FILE(name, NULL)
|
|
|
|
|
|
/* common attributes */
|
|
|
IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
|
|
@@ -99,6 +135,70 @@ IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
|
|
|
IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
|
|
|
IEEE80211_IF_FILE(capab, u.mgd.capab, HEX);
|
|
|
|
|
|
+static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
|
|
|
+ enum ieee80211_smps_mode smps_mode)
|
|
|
+{
|
|
|
+ struct ieee80211_local *local = sdata->local;
|
|
|
+ int err;
|
|
|
+
|
|
|
+ if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
|
|
|
+ smps_mode == IEEE80211_SMPS_STATIC)
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ /* auto should be dynamic if in PS mode */
|
|
|
+ if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
|
|
|
+ (smps_mode == IEEE80211_SMPS_DYNAMIC ||
|
|
|
+ smps_mode == IEEE80211_SMPS_AUTOMATIC))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ /* supported only on managed interfaces for now */
|
|
|
+ if (sdata->vif.type != NL80211_IFTYPE_STATION)
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+
|
|
|
+ mutex_lock(&local->iflist_mtx);
|
|
|
+ err = __ieee80211_request_smps(sdata, smps_mode);
|
|
|
+ mutex_unlock(&local->iflist_mtx);
|
|
|
+
|
|
|
+ return err;
|
|
|
+}
|
|
|
+
|
|
|
+static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
|
|
|
+ [IEEE80211_SMPS_AUTOMATIC] = "auto",
|
|
|
+ [IEEE80211_SMPS_OFF] = "off",
|
|
|
+ [IEEE80211_SMPS_STATIC] = "static",
|
|
|
+ [IEEE80211_SMPS_DYNAMIC] = "dynamic",
|
|
|
+};
|
|
|
+
|
|
|
+static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
|
|
|
+ char *buf, int buflen)
|
|
|
+{
|
|
|
+ if (sdata->vif.type != NL80211_IFTYPE_STATION)
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+
|
|
|
+ return snprintf(buf, buflen, "request: %s\nused: %s\n",
|
|
|
+ smps_modes[sdata->u.mgd.req_smps],
|
|
|
+ smps_modes[sdata->u.mgd.ap_smps]);
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
|
|
|
+ const char *buf, int buflen)
|
|
|
+{
|
|
|
+ enum ieee80211_smps_mode mode;
|
|
|
+
|
|
|
+ for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
|
|
|
+ if (strncmp(buf, smps_modes[mode], buflen) == 0) {
|
|
|
+ int err = ieee80211_set_smps(sdata, mode);
|
|
|
+ if (!err)
|
|
|
+ return buflen;
|
|
|
+ return err;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+
|
|
|
+__IEEE80211_IF_FILE_W(smps);
|
|
|
+
|
|
|
/* AP attributes */
|
|
|
IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
|
|
|
IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
|
|
@@ -109,7 +209,7 @@ static ssize_t ieee80211_if_fmt_num_buffered_multicast(
|
|
|
return scnprintf(buf, buflen, "%u\n",
|
|
|
skb_queue_len(&sdata->u.ap.ps_bc_buf));
|
|
|
}
|
|
|
-__IEEE80211_IF_FILE(num_buffered_multicast);
|
|
|
+__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
|
|
|
|
|
|
/* WDS attributes */
|
|
|
IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
|
|
@@ -158,6 +258,10 @@ IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
|
|
|
debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
|
|
|
sdata, &name##_ops);
|
|
|
|
|
|
+#define DEBUGFS_ADD_MODE(name, mode) \
|
|
|
+ debugfs_create_file(#name, mode, sdata->debugfs.dir, \
|
|
|
+ sdata, &name##_ops);
|
|
|
+
|
|
|
static void add_sta_files(struct ieee80211_sub_if_data *sdata)
|
|
|
{
|
|
|
DEBUGFS_ADD(drop_unencrypted, sta);
|
|
@@ -167,6 +271,7 @@ static void add_sta_files(struct ieee80211_sub_if_data *sdata)
|
|
|
DEBUGFS_ADD(bssid, sta);
|
|
|
DEBUGFS_ADD(aid, sta);
|
|
|
DEBUGFS_ADD(capab, sta);
|
|
|
+ DEBUGFS_ADD_MODE(smps, 0600);
|
|
|
}
|
|
|
|
|
|
static void add_ap_files(struct ieee80211_sub_if_data *sdata)
|