X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fsys-linux.c;h=928a7207f806af13225107064536e87e549a1e17;hp=a43fc0a0fd582e6899dc91bbd5b1d8b64190e58f;hb=ce58910ee630d9485cbf712b4e14d4f4c2d4fa2a;hpb=929f3cc45107cbd755c2e8df3d8dff6348e1df95 diff --git a/pppd/sys-linux.c b/pppd/sys-linux.c index a43fc0a..928a720 100644 --- a/pppd/sys-linux.c +++ b/pppd/sys-linux.c @@ -166,7 +166,6 @@ static int get_flags (int fd); static void set_flags (int fd, int flags); static int translate_speed (int bps); static int baud_rate_of (int speed); -static char *path_to_route (void); static void close_route_table (void); static int open_route_table (void); static int read_route_table (struct rtentry *rt); @@ -361,6 +360,8 @@ int establish_ppp (int tty_fd) * The current PPP device will be the tty file. */ set_ppp_fd (tty_fd); + if (new_style_driver) + add_fd(tty_fd); /* * Ensure that the tty device is in exclusive mode. */ @@ -377,6 +378,13 @@ int establish_ppp (int tty_fd) /* * Set the current tty to the PPP discpline */ + +#ifndef N_SYNC_PPP +#define N_SYNC_PPP 14 +#endif + if (new_style_driver) + ppp_disc = sync_serial ? N_SYNC_PPP:N_PPP; + if (ioctl(tty_fd, TIOCSETD, &ppp_disc) < 0) { if ( ! ok_error (errno) ) fatal("ioctl(TIOCSETD): %m(%d)", errno); @@ -444,6 +452,8 @@ int establish_ppp (int tty_fd) void disestablish_ppp(int tty_fd) { + if (new_style_driver) + remove_fd(tty_fd); if (!hungup) { /* * Flush the tty output buffer so that the TIOCSETD doesn't hang. @@ -833,7 +843,7 @@ void remove_fd(int fd) int read_packet (unsigned char *buf) { - int len; + int len, nr; len = PPP_MRU + PPP_HDRLEN; if (new_style_driver) { @@ -841,13 +851,18 @@ int read_packet (unsigned char *buf) *buf++ = PPP_UI; len -= 2; } - len = read(ppp_dev_fd, buf, len); - if (len < 0) { - if (errno == EWOULDBLOCK || errno == EIO) - return -1; - fatal("read: %m(%d)", errno); + nr = -1; + if (new_style_driver) { + nr = read(ppp_dev_fd, buf, len); + if (nr < 0 && errno != EWOULDBLOCK && errno != EIO) + error("read /dev/ppp: %m"); + } + if (nr < 0 && ppp_fd >= 0) { + nr = read(ppp_fd, buf, len); + if (nr < 0 && errno != EWOULDBLOCK && errno != EIO) + error("read: %m"); } - return new_style_driver? len+2: len; + return (new_style_driver && nr > 0)? nr+2: nr; } /******************************************************************** @@ -1069,39 +1084,31 @@ static char *path_to_procfs(const char *tail) FILE *fp; if (proc_path_len == 0) { + /* Default the mount location of /proc */ + strlcpy (proc_path, "/proc", sizeof(proc_path)); + proc_path_len = 5; fp = fopen(MOUNTED, "r"); - if (fp == NULL) { - /* Default the mount location of /proc */ - strlcpy (proc_path, "/proc", sizeof(proc_path)); - proc_path_len = 5; - - } else { + if (fp != NULL) { while ((mntent = getmntent(fp)) != NULL) { if (strcmp(mntent->mnt_type, MNTTYPE_IGNORE) == 0) continue; - if (strcmp(mntent->mnt_type, "proc") == 0) + if (strcmp(mntent->mnt_type, "proc") == 0) { + strlcpy(proc_path, mntent->mnt_dir, sizeof(proc_path)); + proc_path_len = strlen(proc_path); break; + } } fclose (fp); - if (mntent == 0) - proc_path_len = -1; - else { - strlcpy(proc_path, mntent->mnt_dir, sizeof(proc_path)); - proc_path_len = strlen(proc_path); - } } } - if (proc_path_len < 0) - return 0; - strlcpy(proc_path + proc_path_len, tail, sizeof(proc_path) - proc_path_len); return proc_path; } /* - * path_to_route - determine the path to the proc file system data + * /proc/net/route parsing stuff. */ #define ROUTE_MAX_COLS 12 FILE *route_fd = (FILE *) 0; @@ -1110,26 +1117,10 @@ static int route_dev_col, route_dest_col, route_gw_col; static int route_flags_col, route_mask_col; static int route_num_cols; -static char *path_to_route (void); static int open_route_table (void); static void close_route_table (void); static int read_route_table (struct rtentry *rt); -/******************************************************************** - * - * path_to_route - find the path to the route tables in the proc file system - */ - -static char *path_to_route (void) -{ - char *path; - - path = path_to_procfs("/net/route"); - if (path == 0) - error("proc file system not mounted"); - return path; -} - /******************************************************************** * * close_route_table - close the interface to the route table @@ -1155,13 +1146,10 @@ static int open_route_table (void) close_route_table(); - path = path_to_route(); - if (path == NULL) - return 0; - + path = path_to_procfs("/net/route"); route_fd = fopen (path, "r"); if (route_fd == NULL) { - error("can't open %s: %m (%d)", path, errno); + error("can't open routing table %s: %m", path); return 0; }